作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
ggplot(data=Dane, aes(x=reg$fitted.values, y=reg$residuals))+
geom_smooth(method="lm", se=TRUE, level=0.95)+
theme(panel.background = element_rect(fill = "white", colour = "grey50"))+
geom_point()
最佳答案
以下内容将使用内置数据集 iris
的子集,其中 Species == "setosa"
。
请注意,为了获得预测的置信带,必须在绘图之前拟合线性模型。
library(ggplot2)
data(iris)
subdf <- iris[iris$Species == "setosa", ]
pred <- predict(lm(Sepal.Width ~ Sepal.Length, subdf),
se.fit = TRUE, interval = "confidence")
limits <- as.data.frame(pred$fit)
ggplot(subdf, aes(x = Sepal.Length, y = Sepal.Width)) +
geom_point() +
theme(panel.background = element_rect(fill = "white",
colour = "grey50"))+
geom_smooth(method = "lm") +
geom_line(aes(x = Sepal.Length, y = limits$lwr),
linetype = 2) +
geom_line(aes(x = Sepal.Length, y = limits$upr),
linetype = 2)
关于r - 如何在 ggplot2 中绘制置信区间限制的虚线?工作室R,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53598044/
我是一名优秀的程序员,十分优秀!