在ggplot2和R中为正态分布散点图创建置信区域
例如,我有一些数据(实际上,我有大量数据):
x y
0.1 0.267
0.2 0.254
0.3 0.182
0.4 0.173
0.5 0.121
0.6 0.089
0.7 0.070
0.8 0.056
0.9 0.031
这些数据大致遵循我用 ggplot stat_smooth() 绘制的趋势曲线。 stat_smooth 创建一个灰色区域,趋势线有 95% 的信心落在该区域内。
相反,我想做的是在趋势线周围创建一个灰色区域,假设趋势线周围呈正态分布,则在数据点将以 95% 的置信度下降的位置周围创建一个灰色区域。
另一种说法是,我想要一条 smooth_lines 连接误差线的顶部和底部,并在 ggplot 中对它们之间进行着色。我该怎么做呢?
谢谢。
I have some data, say (in reality, I have a large amount of data):
x y
0.1 0.267
0.2 0.254
0.3 0.182
0.4 0.173
0.5 0.121
0.6 0.089
0.7 0.070
0.8 0.056
0.9 0.031
This data roughly follows a trend curve that I plot with ggplot stat_smooth(). stat_smooth creates a grey area that it is 95% confident that the trendline will fall inside.
What I wish to do instead is create a grey area around where the trendline will be is create a grey area around where the data points will fall with 95% confidence assuming a normal distribution around the trendline.
Another way of saying it, is I want a smooth_lines connecting the tops and bottoms of the error bars and to shade inbetween in ggplot. How should I go about doing this?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您正在寻找的本质上称为预测区间。这是在 ggplot2 中执行此操作的一种方法
What you are looking for is essentially called a prediction interval. Here is one way to do it in
ggplot2