Percentiles
The kth percentile is the value that is greater than k percent of the data values after ranking them. The kth percentile is denoted Pk
Procedure for finding
Formula
The depth of the kth percentile is given. Round up if a decimal, add 0.5 if a whole number.
Quartiles
The quartiles are three values that divide the data into four equally sized groups. The first quartile is denoted Q1 and has 25% of the values less than it and 75% of the values greater than it. The second quartile is the same as the median and has 50% of the values less than it and 50% of the values greater than it. The third quartile is denoted Q3 and has 75% of the values less than it and 25% of the values greater than it.
Procedure for finding
Five Number Summary
The five number summary consists of the minimum, 1st quartile, median, 3rd quartile, and maximum values. Those five numbers divide the data into four equal groups, each containing 25% of the data.
Procedure for finding
Interquartile Range
The interquartile range is the difference between the quartiles.
Procedure for finding
Formula
Semiquartile Range
The semiquartile range is half the difference between the quartiles.
Procedure for finding
Formula
Midquartile
The midquartile range is the midpoint between the quartiles.
Procedure for finding
Formula
10-90 Percentile Range
The 10-90 percentile range is the difference between the 90th and 10th percentiles. See the trimmed mean for another instance of where the data between the 10th and 90th percentiles are used.
Procedure for finding
Formula
Mild Outliers
Mild outliers are data values that lie between 1.5 and 3 times the interquartile range below the 1st quartile or above the 3rd quartile
Procedure for finding
Extreme Outliers
Extreme utliers are data values that lie at least three times the interquartile range below the 1st quartile or above the 3rd quartile
Procedure for finding
Standard Score : z-score
The standard score or z-score is a value that is found by subtracting the mean and then dividing by the standard deviation. No matter what the original mean and standard deviation of the data were, after applying the standardization transformation, the mean will be zero and the standard devation will be one.
The z-score allows us to compare samples that have different means and standard devations to see how scores compare relative to their sample.
Procedure for finding
Formula