gpt4 book ai didi

r - 使用ggplot绘制趋势线

转载 作者:行者123 更新时间:2023-12-04 00:26:06 25 4
gpt4 key购买 nike

我使用ggplot2根据我的数据绘制趋势线。

以下是我使用电子表格完成的操作。

但是我只想显示趋势线(如上图所示的黑线),而不是所有点,因为观察数> 20,000。

所以我尝试使用ggplot2做同样的事情。

fig_a <- ggplot(df1, aes(data_x, data_y ))
fig_a + stat_smooth(method=lm)
fig_a + stat_smooth(method=gam)


显然它不能很好地工作,有人可以帮助吗?

为什么给出这么多的线而不是单个趋势线?

最佳答案

您可以执行以下操作。将+ geom_smooth(method = "lm")添加到您的ggplot脚本中。

使用内置数据的示例

ggplot(mpg, aes(displ, hwy)) + geom_point() + geom_smooth(method = "lm")


enter image description here

关于r - 使用ggplot绘制趋势线,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38412817/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com