绘制来自两个data.frame的数据时图例的问题

时间:2009-11-24 03:24:21

标签: r ggplot2

我在让ggplot2按照我的意愿工作时遇到了一些麻烦。基本上,我想通过将它们放在一个单独的图中来比较实际观察值与近似值。例如,

> library(ggplot2)
> df.actual <- data.frame(x = 1:100, y = (1:100) * 2)
> df.approx <- data.frame(x = 1:150, y = (1:150) * 2 + 5  + rnorm(150, mean = 3) )
> ggplot() + geom_point(aes(x, y), data = df.actual) + geom_line(aes(x,y), data = df.approx)

我的问题是我无法显示传奇。我在某处读到ggplot2的传说不是很灵活(?)。理想情况下,带有

的图例
  • title ='Type'
  • 键:黑色填充点和黑色线
  • 关键标签:'实际','近似'
  • legend.position ='topright'

感谢。

2 个答案:

答案 0 :(得分:7)

试试这个让你入门

ggplot() + 
  geom_point(aes(x, y, colour = "actual"), data = df.actual) + 
  geom_line(aes(x, y, colour = "approximate"), data = df.approx) + 
  scale_colour_discrete("Type")

答案 1 :(得分:5)

这是通过操纵网格对象来修改图例的某种方法:

library("ggplot2")
df.actual <- data.frame(x=1:100, y=(1:100)*2)
df.approx <- data.frame(x=1:150, y=(1:150)*2 + 5 + rnorm(150, mean=3))
p <- ggplot() +
     geom_point(aes(x, y, colour="Actual"), data=df.actual) +
     geom_line(aes(x, y, colour="Approximate"), data=df.approx) +
     scale_colour_manual(name="Type",
                         values=c("Actual"="black", "Approximate"="black"))
library("grid")
grob <- ggplotGrob(p)
tmp <- grid.ls(getGrob(grob, "key.segments", grep=TRUE, global=TRUE))$name
grob <- removeGrob(grob, tmp[1])  # remove first line segment in legend key
tmp <- grid.ls(getGrob(grob, "key.points", grep=TRUE, global=TRUE))$name
grob <- removeGrob(grob, tmp[2])  # remove second point in legend key
grid.draw(grob)

ggplot2 output http://img134.imageshack.us/img134/8427/ggplotlegend.png