Earlier quoted context omitted.
I'm qualified in maths related computing and statistics to exam invigilator level, if that helps offset your bias.
That background would make you explicitly unqualified to asses the quality of box plots as a visualization method. Box plots are used throughout various fields of research that are far less mathematical in nature.
I've stopped using box plots (2021)
151–160 of 258 posts
Re: I've stopped using box plots (2021)
#152Just plotting points will lead to saturation in high density areas that depends on point size and opacity.
Making bin color proportional to point density will require normalization to make the plot readable in many cases.
While I like these plots too in certain situations, I would argue they're actually less elegant than the boxplots for those reasons.
And come on, boxplots aren't that hard to explain to someone who already is used to working with percentiles.
Re: I've stopped using box plots (2021)
#153Earlier quoted context omitted.
The mean and variance are not features of a box plot. Box plots show the quartiles, which are about the cumulative distribution.
Which is why I find the article so compelling because I'd always read box plots as being about variance. To me the plot implied a quite normal distribution.
Re: I've stopped using box plots (2021)
#154Earlier quoted context omitted.
While true, that's not an additional problem compared to box plots which effectively just set the bandwidth to maximum. So IMO they are strictly better.
I find violin plots suggest far smoother results than actually exist so you need to be careful with the amount of data.
Re: I've stopped using box plots (2021)
#155Lots of people defending box plots here -- a lot more than I expected! What I don't see is anyone saying "box plots are useful because they're the best kind of chart for [specific use case]". I can't off-hand think of any situation where I'd rather see a box plot than a strip plot or violin plot. When and why would you want to summarise the data so coarsely and visualize it so un-intuitively?
Violin plots are massively overhyped, IMHO. If your data is simple and unimodal, use a boxplot. If the distribution is more complicated and you need some detail, use a histogram or a ridge plot. Violin plots are never the best option; they're curvy so a little more pretty but don't do a good job of conveying information.
Re: I've stopped using box plots (2021)
#156Lots of people defending box plots here -- a lot more than I expected! What I don't see is anyone saying "box plots are useful because they're the best kind of chart for [specific use case]". I can't off-hand think of any situation where I'd rather see a box plot than a strip plot or violin plot. When and why would you want to summarise the data so coarsely and visualize it so un-intuitively?
> What I don't see is anyone saying "box plots are useful because they're the best kind of chart for [specific use case]". Box plots are useful because they're the best kind of chart for when I have multiple populations and I want to quickly glance whether it's reasonable to assume that the populations have the same median, or not (you do that comparing not just the medians of the populations but also the shaded area…
Re: I've stopped using box plots (2021)
#157Re: I've stopped using box plots (2021)
#158Earlier quoted context omitted.
> What I don't see is anyone saying "box plots are useful because they're the best kind of chart for [specific use case]". Box plots are useful because they're the best kind of chart for when I have multiple populations and I want to quickly glance whether it's reasonable to assume that the populations have the same median, or not (you do that comparing not just the medians of the populations but also the shaded area…
I can't see why a jitter plot with dark lines marking the quartile wouldn't be strictly better for this.
Sure, the jitter plot provides more data, but if you only make use of the quartiles anyway, that extra data is but an unnecessary distraction.
Re: I've stopped using box plots (2021)
#159Re: I've stopped using box plots (2021)
#160The only advantage box plots had is that they can be drawn by hand. Now that computers are ubiquitous this is no longer valuable. Violin plots and bee swarm plots are better. Jittered strip plots can be okay if you're careful to avoid saturation (or more points added in the saturated region will disappear as they can't make it any darker).