Chapter 3 - Descriptive Statistics: Numerical Measures p.102 Flashcards
Boxplot
A graphical summary of data based on a five-number summary.
Chebyshev’s theorem p.127
A theorem that can be used to make statements about the proportion of data values that must be within a specified number of standard deviations of the mean.
Coefficient of variation p.121
A measure of relative variability computed by dividing the standard deviation by the mean and multiplying by 100.
Correlation coefficient p.141
A measure of linear association between two variables that take on values between -1 and +1. Values near +1 indicate a strong positive linear relationship; values near -1 indicate a strong negative linear relationship; and values near zero indicate the lack of a linear relationship.
Covariance p.138
A measure of linear association between two variables. Positive values indicate a positive relationship; negative values indicate a negative relationship.
Empirical rule p.128
A rule that can be used to compute the percentage of data values that must be within one, two, and three deviations of the mean for data that exhibits a bell-shaped distribution.
Five-number summary p.133
A technique that uses five numbers to summarize the data: smallest value, first quartile, median, third quartile, and largest value.
Geometric mean p.109
A measure of location that is calculated by finding the nth root of the product of n values.
Interquartile range (IQR) p.119
A measure of variability, defined to be the difference between the third and first quartiles.
Mean p.104
A measure of central location computed by summing the data values and dividing by the number of observations.
Median p.107
A measure of central location provided by the value in the middle when the data are arranged in ascending order.
Mode p.110
A measure of location, defined as the value that occurs with greatest frequency.
Outlier p.130
An unusually small or unusually large data value
Percentile p.111
A value such that at least p percent of the observations are greater than or equal to this value and at least (100 - p) percent of the observations are less than or equal to this value. The 50th percentile is the median.
Point estimator p.104
A sample statistic used to estimate the corresponding population parameter.
Population parameter p.104
A numerical value used as a summary measure for a population (e.g., the population mean, the population variance, and the population standard deviation).
Quartiles p.112
The 25th, 50th, and 75th percentiles, referred to as the first quartile, the second quartile (median), and third quartile, respectively. The quartiles can be used to divide a data set into four parts, with each part containing approximately 25% of the data.
Range p.118
A measure of variability, defined to be the largest value minus the smallest value.
Sample statistics p.104
A numerical value used as a summary measure for a sample )e.g. the sample mean, the sample variance, and the sample standard deviation)
Skewness p.125
A measure of the shape of a data distribution. Data skewed to the left result in negative skewness; a symmetric data distribution results in zero skewness; and data skewed to the right results in positive skewness.
Standard deviation p.120
A measure of variability computed by taking the positive square root of the variance.
Variance p.119
A measure of variability based on the squared deviations of the data values about the mean.
Weighted mean
The mean obtained by assigning each observation a weight that reflects its importance.
z-score p.126
A value computed by dividing the deviation about the mean (x - Mean(x)) by the standard deviation. A z-score is referred to as a standardized value and denotes the number of standard deviations x is from the mean.
The process of converting a value for a variable to a z-score is often referred to as a z-transformation.
3.1 Sample Mean
Mean(x) = Sum(x)/n
3.2 Population Mean
Mean(x) = Sum(x)/N
3.3 Weighted Mean
Mean(x) = Sum(w * x)/Sum(w)
Where
W = weight for x
.4 Geometric Mean
Mean(x) = nthRoot(Product(x)) = [Product(x)]^(1/n)
3.5 Location of the pth Percentile
Location(p) = (p/100)*(n + 1)
3.6 Interquartile Range
IQR = Quartile(3) - Quartile(1)
The measure of variability is the difference between the third quartile, Quartile(3), and the first quartile, Quartile(1).
3.7 Population Variance
Variance(x) = Sum((x - mean)^2)/N
3.8 Sample Variance
Variance(x) = Sum((X - mean)^2)/(n - 1)
3.9 Sample Standard Deviation
StDev(x) = s = SquareRoot(Variance(x)) = SquareRoot(Square(s))
3.10 Population standard deviation
StDev(x) = s = SquareRoot(Variance(x)) = SquareRoot(Square(s))
3.11 Coefficient of Variation
A descriptive statistic that indicates ow large the standard deviation is relative to the mean.
(StDev(x)/Mean(x))%
3.12 z-Score
z = (x - Mean(x))/StDev(x)
Where z is the z-score for value x
3.13 Sample Covariance
Covariance(x,y) = Sum((x - Mean(x)) * (y - Mean(y)) / (n - 1)
3.14 Population Covariance
Covariance(x,y) = Sum((x - Mean(x)) * (y - Mean(y)) / N
3.15 Pearson Product Moment Correlation Coefficient: Sample Data
CorrelationCoefficient(x,y) = Covariance(x,y)/(StandardDeviation(x) * StandardDeviation(y))
3.16 Pearson Product Moment Correlation Coefficient: Population data
CorrelationCoefficient(x,y) = Covariance(x,y)/(StandardDeviation(x) * StandardDeviation(y))
Median
Arrange the data in ascending order (smallest value to largest value).
a. For an odd number of observations, the median is the middle value. b. For an even number of observations, the median is the average of the two middle values.
Mode
The mode is the value that occurs with greatest frequency.
Range
Range = Largest value - Smallest value
Chebyshev’s Theorem
At least (1 - 1/z^2) of the data values must be within z standard deviations of the mean, where z is any value greater than 1.
- Some implications of this theorem, with z = 2,3, and 4 standard deviations, follow: - At least .75 or 75% of the data values must be within z = 2 standard deviations of the mean - At least .89 or 89% of the data values must be within z = 3 standard deviations of the mean - At least .94 or 94% of the data values must be within z = 4 standard deviations of the mean
Chebyshev’s theorem requires z > 1; but z need not be an integer.
Outliers
Standardized values (z-score) can be used to identify outliers. - Any data value with a z-score less than -3 or greater than +3 is identified as an outlier.
IQR method to identify outliers
- First compute the following lower and upper limits: - Lower Limit = Quartile(1) - 1.5(IQR) - Upper Limit = Quartile(3) + 1.5(IQR) - A Observation is classified as an outlier if its value is less than the lower limit or greater than the upper limit.
The approach that uses the first and third quartiles and the IQR to identify outliers does not necessarily provide the same results as the approach based upon a z-score less than -3 or greater than +3. Either or both procedures may be used.
Five-number summary
- Smallest value
- First quartile, Quartile(1)
- Median, Quartile(2)
- Third quartile, Quartile(3)
- Largest value