使用ggplot2将点与线组合

时间:2011-12-21 15:54:05

标签: r ggplot2

我想绘制一个如下所示的时间序列:

enter image description here

我的情节:

qplot(Jahr, Wert, data=tu, group = Geschlecht, color = Altersgr) + facet_grid(Geschlecht ~ Land)

我的数据如下:

  Land   Altersgr Geschlecht Jahr  Wert
1   DE    < 20 J.          m 2000  13.0
2   DE  20-<65 J.          m 2000  25.7
3   DE     65+ J.          m 2000  70.1
4   DE  65-<80 J.          m 2000  44.2
5   DE     80+ J.          m 2000 213.5
6   BB    < 20 J.          m 2000  26.8

到目前为止,一切都很好。但我必须用一条线连接相应的点(相同的颜色)。我无法弄清楚如何做到这一点。如果我使用geom_line(),我得到了这个结果:

enter image description here

这不是我想要的......我只是觉得我忽略了某些事情......

有什么建议吗?谢谢你的帮助。

3 个答案:

答案 0 :(得分:38)

您可能会发现使用“group”aes将帮助您获得所需的结果。例如:

tu <- expand.grid(Land       = gl(2, 1, labels = c("DE", "BB")),
                  Altersgr   = gl(5, 1, labels = letters[1:5]),
                  Geschlecht = gl(2, 1, labels = c('m', 'w')),
                  Jahr       = 2000:2009)

set.seed(42)
tu$Wert <- unclass(tu$Altersgr) * 200 + rnorm(200, 0, 10)

ggplot(tu, aes(x = Jahr, y = Wert, color = Altersgr, group = Altersgr)) + 
  geom_point() + geom_line() + 
  facet_grid(Geschlecht ~ Land)

这产生了这里的情节:

enter image description here

答案 1 :(得分:12)

使用iris数据集的以下示例可以正常工作:

dat = melt(subset(iris, select = c("Sepal.Length","Sepal.Width", "Species")),
      id.vars = "Species")
ggplot(aes(x = 1:nrow(iris), y = value, color = variable), data = dat) +  
      geom_point() + geom_line()

enter image description here

答案 2 :(得分:0)

对Paul的代码进行了很小的更改,以使它不会返回上述错误。

dat = melt(subset(iris, select = c("Sepal.Length","Sepal.Width", "Species")),
           id.vars = "Species")
dat$x <- c(1:150, 1:150)
ggplot(aes(x = x, y = value, color = variable), data = dat) +  
  geom_point() + geom_line()