(**kwargs: Any)
| 68 | |
| 69 | |
| 70 | def catplot(**kwargs: Any) -> Any: |
| 71 | # kwargs.setdefault("palette", "Greys") |
| 72 | g = sns.catplot(**kwargs) |
| 73 | g.despine(top=False, right=False) |
| 74 | plt.autoscale() |
| 75 | plt.subplots_adjust(top=0.98) |
| 76 | return g |
| 77 | |
| 78 | |
| 79 | def apply_hatch(groups: int, g: Any, legend: bool) -> None: |
no outgoing calls
no test coverage detected