如何将我的点与geom_line()连接?

时间:2019-01-17 09:51:33

标签: r ggplot2

我有一个简单的df,并用所需的颜色和点绘制了一个图,但是我找不到将点与线连接起来的解决方案。

df <- data.frame(Cluster = rep(1:3,3), 
                 FS = c(rep("FS_1", 3), rep("FS_2", 3), rep("FS_3", 3)), 
                 Means = c(-8.9, 5.0, 1.4, -4.7, 6.8, -2.5, 3.1, -3.1, 0.6))

ggplot(df, 
       aes(x = FS, y = Means, color = factor(Cluster), group = 1)) + 
  geom_point()

Dots

现在,我希望这些点与点的颜色相同,但具有:

ggplot(df, 
       aes(x = FS, y = Means, color = factor(Cluster), group = 1)) + 
  geom_point() + 
  geom_line()

我得到这样的奇怪的提示:

lines

我尝试搜索SO,但是关于ggplot2的内容太多了,似乎并没有解决我的问题。我在做什么错了?

0 个答案:

没有答案