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.
我想在 ggplot2 中创建一个散点图,其中覆盖了一条或多条线。查看 geom_smooth() 和 geom_line() 的文档后,我仍然不清楚如何为要添加到绘图中的线指定方程。我知道这必须是非常基本的,所以请随时简单地向我指出我必须忽略的适当文档。
geom_abline()是您要查找的 geom 的名称,例如geom_abline(aes(intercept=a,slope=b)). 在线文档中有示例。
geom_abline()
geom_abline(aes(intercept=a,slope=b))