Quantiles

Table of Contents

Quantiles are values that split the observed distribution of scores on a variable at the points that divide the distribution to get the required proportion above and below that point. The most widely used is the median which splits the distribution into two equal sized ranges. The next most commonly used quantile is the quartiles which split a distribution into four equal sized ranges: 25% below the the first or lower quartile, 25% between that and the median (2nd quartile), 25% between the median and the third/upper quartile and the remaining 25% above that and up to and including the observed maximum score.

Details #

For most observed distributions it won’t be possible to get exactly the proportions desired, for example a set of data: 1, 1, 1, 2, 3, 3, 3, 3, 4, 4, 5 doesn’t split neatly into quartiles with 25% of those 11 observations in each quartile. (Clearly you can’t split 11 observations into four equal sized groups! If you were lucky you might get a perfect split with a sample size of 12 or 16 or any multiple of 4 but you would probably still be lucky if things split so nicely.) There are actually multiple definitions of how to define quantiles but the details are incredibly unlikely to ever matter with therapy data. For what it’s worth, the default definition in CE’s beloved R statistical system has the quartiles for that set of 11 scores at 1.5, 3.0, 3.5 and 5.0, so the split is:
1, 1, 1
2
3, 3, 3, 3 and
4, 4, 5
Hardly a neat 25%:25%:25%:25% split. This also illustrates another potentially confusing thing: that the quantiles may be, almost always are for item scores, actually impossible scores.

I (CE!) may try to put in more illustrations later but don’t worry about this but hang onto the idea that quantiles split up a distribution as well as it can.

Try also … #

Quartiles
Median
Inter-quartile range (IQR)
Boxplots

Powered by BetterDocs