Michael Waskom
Michael Waskom
- `Band` is more consistent with `err_style="band"` in the existing `lineplot` and is shorter - `Range` is more about brevity than consistency, but `Interval` could be useful as a stat...
This works: ```python so.Plot(x=[1, 2, 3, 4], ymin=0, ymax=[1, 2, 3, 4]).add(so.Interval()) ``` This fails: ```python so.Plot(x=[1, 2, 3, 4], ymax=[1, 2, 3, 4]).add(so.Interval(), ymin=0) ``` ```python-traceback --------------------------------------------------------------------------- ValueError Traceback...
In some cases, it will be easy for users to achieve some fussy customization by writing imperative matplotlib code rather than trying to fit it into the declarative seaborn spec....
This should show the sequence of questions one asks oneself while deciding which plot type to use. This basically exists in the narrative of that page already, but it would...
This issue serves to track the work involved in refactoring the categorical module to use the core infrastructure, modernizing the API, features, and implementation of the plotting functions. ## Background...
Would have done this originally if the rcParams existed. Now they do! So it would be a good idea. Note that the aesthetics tutorial should change because it currently demonstrates...
I did not want this to hold up #2104, because legends need serious rethinking at the core level. But I will note that the implementation of legends in the new...
Tagging for 0.12 as this code will be more standardized across the library by then.