Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试在 ggplot 中制作散点图,并希望松开点并仅显示平滑线和置信区间。我检查了geom_point()功能,没有选项可以关闭它,从而隐藏点/基础数据。有什么建议么?非常感激。
geom_point()
约瑟夫
要在线条周围绘制带有置信区间的平滑线,您应该使用geom_smooth(). 如果观察数少于 1000,这将使用黄土平滑线,如果更多,则使用 gam。但是您可以使用参数更改平滑方法method=。
geom_smooth()
method=
ggplot(mtcars,aes(wt,mpg))+geom_smooth()