Quantile

From Wikipedia, the free encyclopedia

Quantiles are essentially points taken at regular intervals from the cumulative distribution function of a random variable. Dividing ordered data into q essentially equal-sized data subsets is the motivation for q-quantiles; the quantiles are the data values marking the boundaries between consecutive subsets. Put another way, the kth q-quantile is the value x such that the probability that a random variables will be less than x is at most k/q and the probability that a random variable will be less than or equal to x is at least k/q. There are q − 1 quantiles, with k an integer satisfying 0 < k < q.

Some quantiles have special names:

  • The 100-quantiles are called percentiles.
  • The 20-quantiles are called duo-deciles.
  • The 10-quantiles are called deciles.
  • The 9-quantiles are called noniles, common in educational testing.
  • The 5-quantiles are called quintiles.
  • The 4-quantiles are called quartiles.

Some software programs (including Microsoft Excel) regard the minimum and maximum as the 0th and 100th percentile, respectively; however, such terminology is an extension beyond traditional statistics definitions. For an infinite population, the kth quantile is the data value where the cumulative distribution function is equal to k/q. For a finite N sample size, calculate N\cdot k/q--if this is not an integer, then round up to the next integer to get the appropriate sample number (assuming samples ordered by increasing value); if it is an integer then any value from the value of that sample number to the value of the next can be taken as the quantile, and it is conventional (though arbitrary) to take the average of those two values (see Estimating the quantiles ).

More formally: the kth "q"-quantile of the population parameter X can be defined as the value "x" such that:

P(X\le x)\ge p\mbox{ and }P(X\ge x)\ge 1-p where p=\frac{k}{q}

or equivalently

P(X< x)\le p\mbox{ and }P(X> x)\le 1-p where p=\frac{k}{q}

If instead of using integers k and q, the p-quantile is based on a real number p with 0<p<1 then this becomes: The p-quantile of the distribution of a random variable X can be defined as the value(s) x such that:

P(X\leq x)\geq p \ \mathrm{and} \ P(X\geq x)\geq 1-p

or equivalently

P(X< x)\le p \ \mathrm{and} \ P(X> x)\le 1-p.

For example, given the 10 data values {3, 6, 7, 8, 8, 10, 13, 15, 16, 20}, the first quartile is determined by 10*(1/4) = 2.5, which rounds up to 3, meaning that 3 is the rank in order of samples (from least to greatest values), at which, approximately 1/4 samples have values less than this third sample, which in this case is 7. The second quartile value (same as the median) is determined by 10*(2/4) = 5, which is an integer, while the number of samples (10) is an even number, so the average of both the fifth and sixth values is taken--that is (8+10)/2 = 9, though any value from 8 through to 10 could be taken to be the median. If the number of data values is odd, then the median value (or 2nd quartile) is the value found at sample=(#values + 1)/2 (so for this example if there had also been a value of 9 between values 8 and 10, making 11 samples total, then (11+1)/2=6, meaning that the sixth sample (in this case the value 9), would be the 2nd quartile, where 1/2 of the samples have values greater than the value at this sample (greater than 9--the value at sample 6 of 11), and 1/2 of the samples have values less than the value at this sample. The third quartile value for the original example above is determined by 10*(3/4) = 7.5, which rounds up to 8, and the eighth sample is 15. The motivation for this method is that the first quartile should divide the data between the bottom quarter and top three-quarters. Ideally, this would mean 2.5 of the samples are below the first quartile and 7.5 are above, which in turn means that the third data sample is "split in two", making the third sample part of both the first and second quarters of data, so the quartile boundary is right at that sample.

Standardized test results are commonly misinterpreted as a student scoring "in the 80th percentile", for example, as if the 80th percentile is an interval to score "in", which it is not; one can score "at" some percentile or between two percentiles, but not "in" some percentile.

It should be noted that different software packages use slightly varying algorithms, so the answer they produce may be slightly different for any given set of data. Besides the algorithm given above, which is the proper one based on probability, there are at least four other algorithms commonly used (for various reasons, such as of ease of computation, ignorance, etc.).

If a distribution is symmetrical, then the median is the mean (so long as the latter exists). But in general, the median and the mean differ. For instance, with a random variable that has an exponential distribution, any particular sample of this random variable will have roughly a 63% chance of being less than the mean. This is because the exponential distribution has a long tail for positive values, but is zero for negative numbers.

Quantiles are useful measures because they are less susceptible to long tailed distributions and outliers.

Empirically, if the data you are analyzing are not actually distributed according to your assumed distribution, or if you have other potential sources for outliers that are far removed from the mean, then quantiles may be more useful descriptive statistics than means and other moment related statistics.

Closely related is the subject of least absolute deviations, a method of regression that is more robust to outliers than is least squares, in which the sum of the absolute value of the observed errors is used in place of the squared error. The connection is that the mean is the single estimate of a distribution that minimizes expected squared error while the median minimizes expected absolute error. Least absolute deviations shares the ability to be relatively insensitive to large deviations in outlying observations, although even better methods of robust regression are available.

The quantiles of a random variable are generally preserved under increasing transformations, in the sense that for example if m is the median of a random variable X then 2m is the median of 2X, unless an arbitrary choice has been made from a range of values to specify a particular quantile. Quantiles can also be used in cases where only ordinal data is available.

[edit] Estimating the quantiles

There are several methods for estimating the quantiles:

Let N be the number of non-missing values of the sample population, and let x_1,x_2,\ldots,x_N represent the ordered values of the sample population such that x1 is the smallest value, etc. For the kth q-quantile, let p = k / q.

Empirical distribution function 
\begin{cases}x_j, & g=0\\ x_{j+1}, & g>0\end{cases}

j is the integer part of N\cdot p and g is the fractional part

Empirical distribution function with averaging 
\begin{cases}\frac{1}{2}(x_j+x_{j+1}), & g=0\\ x_{j+1}, & g>0\end{cases}

j is the integer part of N\cdot p and g is the fractional part

Weighted average 
x_{j+1}+g\cdot(x_{j+2}-x_{j+1})

j is the integer part of (N-1)\cdot p and g is the fractional part. This method is used for example in the PERCENTILE function of Microsoft Excel.

Sample number closest to (N-1)·p+1 
\begin{cases}x_j, & g<.5\\ x_{j+1}, & g\ge .5\end{cases}

j is the integer part of (N-1)\cdot p+1 and g is the fractional part

[edit] See also

[edit] External links

  • Calculating quantiles using R programming language: [1], [2]
  • R.J. Serfling. Approximation Theorems of Mathematical Statistics. John Wiley &

Sons, 1980.