Michael Waskom
Michael Waskom
Hi, yes, people have asked before about inserting multi-axes seaborn plots into a larger matplotlib figure. The problem is that too much of the logic of the seaborn Grid objects...
Here's another concern with this specific approach: by having your `Figure` class define `add_facetgird`, etc., it doesn't seem possible to use figure-level seaborn plotting functions (`relplot`, `catplot`, etc.). These functions...
Also, the text in the previous issue emphasizes an important challenge: the notion of "figure-level" and "axes-level" as the core taxonomy of seaborn functions. These concepts are emphasized strongly in...
My suggestion would probably be to push forward on an approach that assembles a super-figure from existing figure objects. That approach has been prototyped here: https://stackoverflow.com/questions/35042255/how-to-plot-multiple-seaborn-jointplot-in-subplot. Note that this is...
Actually even looking at the release notes, I don't think I understand exactly what is deprecated here. The relevant section starts with > Most of the time setting values with...
I'm not sure that's a sufficient change @jbrockmendel because `df.isetitem` will not work in that case and there is no corresponding `df.setitem.` I also suspect it's possible to get into...
This might just be a matter of >2 layers...
I can reproduce the perf regression here but I don't think the issue is the `errorbar` implementation per se (that is it's not computing error bars even though you're asking...
Some insight from profiling: Nearly all of the time spent in `_LinePlotter.plot` is spend doing the aggregation: ``` Line # Hits Time Per Hit % Time Line Contents ============================================================== 378...
I agree that more flexibility here would be nice, but I don't think this is the way to do it. Better, I think, would be passing a Locator object.