(ax, methods)
| 99 | |
| 100 | |
| 101 | def _apply_hatches(ax, methods): |
| 102 | hatches = [PROVIDER_HATCHES.get(m, "") for m in methods] |
| 103 | for container, hatch in zip(ax.containers, hatches): |
| 104 | for bar in container: |
| 105 | bar.set_hatch(hatch) |
| 106 | return hatches |
| 107 | |
| 108 | |
| 109 | def plot( |