Solved – How to statistically and graphically compare distributions for nine groups where group sample sizes are unequal

distributionshypothesis testingr

I conducted a study in which I collected the height, width, and weight of individuals from 9 different races (i.e I collected 10 to about 30 samples per race).

  • How can I can display the distribution of the data for each group for a given variable (e.g., height)? I have thought of using histogram but then how do I handle the missing value ranges.

  • What other statistical approaches and visualization would be suitable for examining similarity in distribution?

  • How could these approaches be implemented in R?

Best Answer

For multiple groups with 10-30 data points per group, I like "dot plots" (as I call them), which you can create with stripchart() in R. I always use method="jitter" and pch=1.

You might also check out the beeswarm package, which makes similar plots but with deterministic placement of points.