The Sampling Distribution of the Sample Mean

Опубликовано: 26 Сентябрь 2013
на канале: jbstatistics
319,778
2.3k

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:

http://ndb.nal.usda.gov/ndb/foods/sho...

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 Sampling Distribution of the Sample Mean онлайн без регистрации, длительностью часов минут секунд в хорошем качестве. Это видео добавил пользователь jbstatistics 26 Сентябрь 2013, не забудьте поделиться им ссылкой с друзьями и знакомыми, на нашем сайте его посмотрели 319,778 раз и оно понравилось 2.3 тысяч людям.