R散点图两组一组回归线

时间:2018-07-05 10:29:19

标签: r

在ggplot2中,我试图使用分组变量(用于点的不同颜色)在Rstudio中绘制散点图,但是我希望对数据整体使用一条回归线。 对于任何建议将不胜感激。

1 个答案:

答案 0 :(得分:5)

以下是使用iris数据集的示例:

data(iris)

ggplot(iris, aes(x = Sepal.Width, y = Sepal.Length)) +
      geom_point(aes(colour = Species)) +
      geom_smooth(method = "lm")

“技巧”仅在geom_point中指定分组变量,而不是在一般美学中。

输出:

enter image description here