filmov
tv
The Sampling Distribution of the Sample Mean

Показать описание
I discuss the sampling distribution of the sample mean, and work through an example of a probability calculation. (I only briefly mention the central limit theorem here, but discuss it in more detail in another video).
The mean and standard deviation of the amount of protein in a quarter pound patty of lean beef was found in the USDA nutrient database at:
For those using R, here is the R code to find the values in the examples:
The probability a randomly selected patty has at least 23.0 grams of protein (mu = 21.4, sigma = 1.9):
1-pnorm(23.0,21.4,1.9)
[1] 0.1998645
or, if we standardize:
1-pnorm((23.0-21.4)/1.9)
[1] 0.1998645
The probability that the mean of 4 randomly selected patties is at least 23.0 grams of protein (sampling from a normal distribution with mu = 21.4, sigma = 1.9):
1-pnorm(23.0,21.4,1.9/sqrt(4))
[1] 0.04607049
or, if we standardize:
1-pnorm((23.0-21.4)/(1.9/sqrt(4)))
[1] 0.04607049
The mean and standard deviation of the amount of protein in a quarter pound patty of lean beef was found in the USDA nutrient database at:
For those using R, here is the R code to find the values in the examples:
The probability a randomly selected patty has at least 23.0 grams of protein (mu = 21.4, sigma = 1.9):
1-pnorm(23.0,21.4,1.9)
[1] 0.1998645
or, if we standardize:
1-pnorm((23.0-21.4)/1.9)
[1] 0.1998645
The probability that the mean of 4 randomly selected patties is at least 23.0 grams of protein (sampling from a normal distribution with mu = 21.4, sigma = 1.9):
1-pnorm(23.0,21.4,1.9/sqrt(4))
[1] 0.04607049
or, if we standardize:
1-pnorm((23.0-21.4)/(1.9/sqrt(4)))
[1] 0.04607049
Sampling Distributions (7.2)
The Sampling Distribution of the Sample Mean (fast version)
The Sampling Distribution of the Sample Mean
Sampling Distribution of the Sample Proportion (7.4)
Sampling Distribution - Central Limit Theorem - Normal Distribution
The Sampling Distribution of the Sample Variance
The Sampling Distribution of the Sample Proportion
Central Limit Theorem - Sampling Distribution of Sample Means - Stats & Probability
Hypothesis Testing on the Normal Distribution Practice Question
Sampling distribution of the difference in sample means | AP Statistics | Khan Academy
The Sampling Distribution of the Difference in Sample Means (X_1 bar - X_2 bar)
Sampling distribution of the sample means (Normal distribution) | ExamSolutions
Sampling Distributions: Introduction to the Concept
Inferential Statistics Part 1: The Sampling Distribution
Sampling Distribution | Statistics | Sampling Techniques | Population | WhiteBoard
Sampling distribution of the difference in sample proportions | AP Statistics | Khan Academy
Sampling distribution of sample proportion part 1 | AP Statistics | Khan Academy
Sampling mean distribution and proportion distribution
Example of Sampling Distribution of the Mean
Sampling Distribution of the Sample Mean | ExamSolutions
Review: Sampling Distribution of the Sample Proportion, Binomial Distribution, Probability (7.5)
5.3 The sampling distribution | Basic Statistics | Sampling Distributions | UvA
Shape of the sampling distribution
Sampling and sampling Distribution | Sample | Sample Method | Bsusiness statistic | Part 1
Комментарии