The Mean of the Sample Mean|Standard Deviation of the Sample Mean|SE
7.2 The Mean and Standard Deviation of the Sample Mean
Recall that the mean of a variable is denoted μ, subscripted if necessary with the letter representing the variable. So the mean of x is written as μx , the mean of y as μy , and so on. In particular, then, the mean of x¯ is written as μx¯; similarly, the standard deviation of x¯ is written as σx¯.
There is a simple relationship between the mean of the variable x¯ and the mean of the variable under consideration: They are equal, or μx¯ = μ.
Example:
Sample size:2
The mean of population:
基于:
Mean of the Sample Mean:
所以:
Standard Deviation of the Sample Mean:(研究population 方差与sample mean的方差的关系)
Standard Deviation of population:
Standard Deviation of the Sample Mean:
the standard deviation of x¯ gets smaller as the sample size gets larger.(因为公式二中n作为分母,方差随分母变小而变大)
When sampling is done without replacement from a finite population(无放回是指每次抽取的两个样本绝不相同,eg,76,78;所以本例中是无放回)
When sampling is done with replacement from a finite population(有放回是指每次抽取的两个样本有可能相同,eg,76,76)
When the sample size is small relative to the population size, there is little difference between sampling with and without replacement.(极端值便是每次抽一个样本,放回和不放回都一样)
As a rule of thumb, we say that the sample size is small relative to the population size if the size of the sample does not exceed 5% of the size of the population (n ≤ 0.05N)
因为实际操作来说,我们能取到得样本数绝对远小于population,所以本书中使用公式二近似公式一
In most practical applications, the sample size is small relative to the population size, so in this book, we use the second formula only
This explains mathematically why the standard deviation of x¯ decreases as the sample size increases.
所以,采用更大sample size对于估计总体均值有帮助:
1.The larger the sample size, the smaller is the standard deviation of x¯.
2.The smaller the standard deviation of x¯, the more closely the possible values of x¯(the possible sample means) cluster around the mean of x¯.
3.The mean of x¯ equals the population mean.
the standard error of x¯变少,所以,sample errors 变少, 所以在这里引入标准差:In general, the standard deviation of a statistic used to estimate a parameter is called the standard error (SE) of the statistic.
The Mean of the Sample Mean|Standard Deviation of the Sample Mean|SE的更多相关文章
- 对于随机变量的标准差standard deviation、样本标准差sample standard deviation、标准误差standard error的解释
参考:http://blog.csdn.net/ysuncn/article/details/1749729
- range|Sample Standard Deviation|标准差几何意义
Measures of Variation 方差:measures of variation or measures of spread 源于range发现range不足以评估整个set(因为只用到l ...
- How to Find the Standard Deviation in Minitab
Standard deviation, represented by the Greek Letter sigma σ, is a measure of dispersement in statist ...
- Mean, Median, Mode, Range, and Standard Deviation
Descriptive statistics tell you about the distribution of data points in data set. The most common m ...
- 标准差(standard deviation)和标准误差(standard error)你能解释清楚吗?
by:ysuncn(欢迎转载,请注明原创信息) 什么是标准差(standard deviation)呢?依据国际标准化组织(ISO)的定义:标准差σ是方差σ2的正平方根:而方差是随机变量期望的二次偏差 ...
- 标准差(standard deviation)和标准错误(standard error)你能解释一下?
by:ysuncn(欢迎转载,转载请注明原始消息) 什么是标准差(standard deviation)呢?依据国际标准化组织(ISO)的定义:标准差σ是方差σ2的正平方根.而方差是随机变量期望的二次 ...
- 方差(variance)、标准差(Standard Deviation)、均方差、均方根值(RMS)、均方误差(MSE)、均方根误差(RMSE)
方差(variance).标准差(Standard Deviation).均方差.均方根值(RMS).均方误差(MSE).均方根误差(RMSE) 2017年10月08日 11:18:54 cqfdcw ...
- Mathematics | Mean, Variance and Standard Deviation
Mean is average of a given set of data. Let us consider below example These eight data points have t ...
- 均方根值(RMS)+ 均方根误差(RMSE)+标准差(Standard Deviation)
均方根值(RMS)+ 均方根误差(RMSE)+标准差(Standard Deviation) 1.均方根值(RMS)也称作为效值,它的计算方法是先平方.再平均.然后开方. 2.均方根误差,它是观测值 ...
随机推荐
- Vmotion迁移要求
- vue项目 首页开发 part2
知识点回顾 git clone: 从远程服务器克隆一个一模一样的版本库到本地,复制的是整个版本库, 叫做clone.(clone是将一个库复制到你的本地,是一个本地从无到有的过程) 1. 创建分支 进 ...
- AXURE方便的功能
(1)建立一个公共的页面,可以把一些常用的组建放进去,就和代码要封装方法一样,这样省区了用到一次画一次的麻烦. 其中可以包括:弹出框.图标.搜索框之类的. 当然还可以把经常用到的 登陆.注册.忘记密码 ...
- linux下ffmpeg环境搭建记录
1.Linux下安装yasm 官网下载:http://yasm.tortall.net/Download.html tar -zvxf yasm-1.3.0.tar.gz cd yasm-1.3.0/ ...
- java加解密算法--对称加密工作模式
对称加密又分为分组加密和序列密码.分组密码,也叫块加密(block cyphers),一次加密明文中的一个块.是将明文按一定的位长分组,明文组经过加密运算得到密文组,密文组经过解密运算(加密运算的逆运 ...
- sklearn.metrics中的评估方法介绍(accuracy_score, recall_score, roc_curve, roc_auc_score, confusion_matrix)
1 accuracy_score:分类准确率分数是指所有分类正确的百分比.分类准确率这一衡量分类器的标准比较容易理解,但是它不能告诉你响应值的潜在分布,并且它也不能告诉你分类器犯错的类型.常常误导初学 ...
- 吴裕雄--天生自然 PYTHON3开发学习:字符串
var1 = 'Hello World!' var2 = "Runoob" #!/usr/bin/python3 var1 = 'Hello World!' var2 = &quo ...
- 01 语言基础+高级:1-5 常用API第二部分_day01.【Object类、常用API: Date类、System类、StringBuilder类】
day01[Object类.常用API] 主要内容 Object类 Date类 DateFormat类 Calendar类 System类 StringBuilder类 包装类 java.lang.O ...
- PAT甲级——1073 Scientific Notation (20分)
Scientific notation is the way that scientists easily handle very large numbers or very small number ...
- 题解 P3117 【[USACO15JAN]牛的矩形Cow Rectangles】
暴力什么的就算了,贪心他不香吗 这题其实如果分开想,就三种情况需要讨论:(由于不会发图,只能手打) 1) 5 . . . . . 4 . . . . . 3 . . . H . 2 . . G . . ...