博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
什么是预测区间,置信区间与预测区间二者的异同是什么?
阅读量:5076 次
发布时间:2019-06-12

本文共 1856 字,大约阅读时间需要 6 分钟。

Ask:

什么是预测区间,置信区间和预测区间二者的异同是什么?

 

Answer:

置信区间估计(confidence interval estimate):利用估计的回归方程,对于自变量 x 的一个给定值 x0 ,求出因变量 y 的平均值的估计区间。

预测区间估计(prediction interval estimate):利用估计的回归方程,对于自变量 x 的一个给定值 x0 ,求出因变量 y 的一个个别值的估计区间。

----------------------------

转:http://f.dataguru.cn/thread-47303-1-1.html

第9周作业的最后一题要求给出预测值得区间估计。reg过程中有2个选项CLM和CLI,那么到底哪一个才是我们需要的呢?
帮助文档描述: 
CLI requests the 100(1-α)% upper and lower confidence limits for an individual predicted value. By default, the 95% limits are computed; the ALPHA= option in the PROC REG or MODEL statement can be used to change the α level. The confidence limits reflect variation in the error, as well as variation in the parameter estimates. See the section Predicted and Residual Values and Chapter 4, Introduction to Regression Procedures, for more information. 
CLM displays the 100(1-α)%  upper and lower confidence limits for the expected value of the dependent variable (mean) for each observation. By default, the 95% limits are computed; the ALPHA= in the PROC REG or MODEL statement can be used to change the α level. This is not a prediction interval (see the CLI option) because it takes into account only the variation in the parameter estimates, not the variation in the error term. See the section Predicted and Residual Values and Chapter 4, Introduction to Regression Procedures, for more information. 
我查阅了相关资料,回归模型有2种区间估计:
一种是置信区间(confidence interval),他是对于x的一个给定值,y的平均值的区间估计。
另一种是预测区间(prediction interval),他是对于x的一个给定值,y的一个个别值的区间估计。
从帮助文档看,CLI对应的是预测区间(prediction interval),CLM对应的是置信区间(confidence interval),并且预测区间的范围总是要比置信区间的范围要大的。就是说,给定一个X,估计对应Y的平均值平均值比估计一个个别值更精确一点。其实也好理解,估计平均值比估计个别值貌似更简单一点嘛。个别值更容易受一些外界因素影响而有差异性,而平均值则相对稳定些。
以作业为例,当根据样本建立了回归方程后,假设需要预测以下2个问题: 
1. 今年最大积雪深度为7米,预测今年灌溉面积
2. 对于那些积雪深度为7米的年份,预测灌溉面积
第一个问题就是一个预测个别值的例子,而第2个问题就是预测一个平均值的例子。

 

转载于:https://www.cnblogs.com/100thMountain/p/5539024.html

你可能感兴趣的文章
EOS生产区块:解析插件producer_plugin
查看>>
mysql重置密码
查看>>
jQuery轮 播的封装
查看>>
一天一道算法题--5.30---递归
查看>>
JS取得绝对路径
查看>>
排球积分程序(三)——模型类的设计
查看>>
python numpy sum函数用法
查看>>
php变量什么情况下加大括号{}
查看>>
linux程序设计---序
查看>>
【字符串入门专题1】hdu3613 【一个悲伤的exkmp】
查看>>
C# Linq获取两个List或数组的差集交集
查看>>
HDU 4635 Strongly connected
查看>>
ASP.NET/C#获取文章中图片的地址
查看>>
Spring MVC 入门(二)
查看>>
格式化输出数字和时间
查看>>
页面中公用的全选按钮,单选按钮组件的编写
查看>>
java笔记--用ThreadLocal管理线程,Callable<V>接口实现有返回值的线程
查看>>
BZOJ 1047 HAOI2007 理想的正方形 单调队列
查看>>
各种语言推断是否是手机设备
查看>>
这个看起来有点简单!--------实验吧
查看>>