Michael Waskom

Results 340 comments of Michael Waskom

We should unbreak this, even if it's discouraged usage. Glad you were able to work out the right thing to do here, but I am a little curious why you...

Do you have an example? Catplot should basically just be generating the code in your third post.

Thanks but I’d need to see the actual code to make sense of the example.

That link 404s (is it a private repo?) I can't reproduce whatever you might be seeing with a simple example though: ![image](https://user-images.githubusercontent.com/315810/189239349-653ad649-756c-487e-ae82-4aca79e7af89.png) (The `tips` example dataframe loads with categorical dtypes...

Hi, I don't think you've missed anything. `width` is a bit of a rough edge — it's potentially important for all marks (because it could be needed to dodge properly)...

I've been asked about this for seaborn plots and would especially +1 the request for a "caption" concept. Given that matplotlib already has title/suptitle I can definitely see how adding...

The concern was never about styling, just about workflow. I appreciate that RTD has some nice features that make collaborating on doc updates easier, but those just aren't particularly compelling...

It's now (as of #3255) possible to pass per-box widths in `boxplot`, although it's somewhat limited and doesn't work when using `hue`: ```python widths = tips["day"].value_counts(normalize=True) widths /= widths.max() *...

Closing as this is now at least partially supported, and supporting the general/full case (i.e. working well with `hue` and dodged plots) would be complicated. It's possible it will be...