Michael Waskom
Michael Waskom
I guess what I'm not fully understanding is why you couldn't arrive at the conclusion using a standard cumulative distribution plot.
Hi, yes this is an unfortunate API inconsistency, but as to your confusion about why the `facet_kws` dict has no effect, `catplot` needs to handle axes sharing externally to `FacetGrid`:...
It is annoying that you would specify axis sharing in different places for the two functions but given that `sharex`/`sharey` appear in the catplot signature it is not obvious to...
See https://github.com/mwaskom/seaborn/issues/2429. This isn't something that should be made as an ad hoc change for the KDE computation in violinplot. But the core code that is shared by newer modules...
The idea i had in mind here was something like the [scikit-learn](https://scikit-learn.org/stable/tutorial/machine_learning_map/index.html) flowchart. In terms of documentation infrastructure, I think I would like to avoid adding another dependency to the...
Not exactly what I originally had in mind, but calling this done with https://seaborn.pydata.org/tutorial/properties.html
The problem here is your `R_2` variable, which has very many values with rather small variance and then a handful of extreme outliers. As a result, the default binwidth that...
Another possible solution may be to not draw bars with 0 observations (the histogram binning itself doesn't take too much time, the bottleneck is all in matplotlib), although I am...
Relevant upstream issue https://github.com/numpy/numpy/issues/11879
`distplot` capped the number of automatically chosen bars at 50, so it never ran into this issue. But that felt like a hack without particular justification. There's some discussion of...