W1 EXPLAINING AND PREDICTING THE WORLD Flashcards
What are the 3 central tendencies?
Mean, Median, Mode
What is VARIANCE?
Average squared deviation from the mean
What is the variance of this set? {1,2,3,4,5} (Population)
Variance 1. Get mean (3) 2. For i in nums: total += (mean - nums[i])^2 total / len(nums) Variance = 10/5 variance = 2
What is the formula for Variance?
SUM[i-n] (y[i] - μ)^2 / n
What is the formula for Variance in a sample?
SUM[i-n] (y[i] - μ)^2 / (n - 1)
What is the formula for standard deviation?
√(SUM[i-n] (y[i] - μ)^2 / n)
What is σ and μ?
Standard Deviation and Mean
How to calculate Coefficient of variation?
CV = σ/μ x 100
What skew does this graph have?
Positive
What skew does this graph have?
Negative
What is kurtosis?
Kurtosis is a measure of whether the data are heavy-tailed or light-tailed relative to a normal distribution.
What is Mesokurtic?
A normal amplitude for a normal distribution curve
What is Leptokurtic?
A higher amplitude for a normal distribution curve
What is Platykurtic?
A shallower amplitude for a normal distribution curve
What are the approximate % within each standard deviation?
μ to 1σ: 34.1% 1σ to 2σ: 13.6% 2σ to 3σ: 2.1% 3σ to 4σ: 0.1%