作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
对于 R 的“统计”包的 LOWESS 回归线的置信区间 (CI),我没有找到任何令人满意的答案:
plot(cars, main = "lowess(cars)")
lines(lowess(cars), col = 2)
V = s^2*sum(w^2)
Y plus/minus 2*sqrt(V(Y))
最佳答案
你可以用 predict()
来做到这一点和 loess()
. lowess
早于 loess
并具有较少的功能,但速度要快一些。但在这种情况下,我会使用 loess
如下。
plot(cars)
plx<-predict(loess(cars$dist ~ cars$speed), se=T)
lines(cars$speed,plx$fit)
lines(cars$speed,plx$fit - qt(0.975,plx$df)*plx$se, lty=2)
lines(cars$speed,plx$fit + qt(0.975,plx$df)*plx$se, lty=2)
关于r - 如何使用 R 获得 LOWESS 拟合的置信区间?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22717930/
我是一名优秀的程序员,十分优秀!