Daniel Müller-Komorowska
Daniel Müller-Komorowska
Here is the strategy: I define a `FigKwargs` dataclass that has exactly the same default values as in `def _get_default_fig_kwargs() -> Dict`. That makes `FigKwargs().__dict__` functionally identical to `_get_default_fig_kwargs()` (the...
For the diagonal plots, if `diag=="kde"`, `diag_kwargs={'bins': 50}` changes the bins as intended. But if `diag=='hist'`, `diag_kwargs={'bins': 50}` silently has no effect on the bins. Instead, `diag_kwargs={'mpl_kwargs': {'bins': 50}}` is...
Another issue: `diag`, `upper` & `lower` all accept lists a input, which suggests that they support distinct plot types for each parameter. However, this feature does not work currently. Instead,...