ggplot2@R 中两个不同大小系列的图例
Posted
技术标签:
【中文标题】ggplot2@R 中两个不同大小系列的图例【英文标题】:Legends for two different sized series in ggplot2@R 【发布时间】:2013-05-06 21:40:34 【问题描述】:在 R 中使用 ggplot 绘制时,有没有办法获取两个系列的图例? 可能是我在函数中遗漏了一些愚蠢的(应该知道的)参数。我在网上没有找到答案。
这是数据:
df1 <- structure(list(time = structure(c(1352804400, 1352804430, 1352804460,
1352804490, 1352804520, 1352804550, 1352804580, 1352804610, 1352804640,
1352804670, 1352804700, 1352804730, 1352804760, 1352804790, 1352804820,
1352804850, 1352804880, 1352804910, 1352804940, 1352804970, 1352805000,
1352805030, 1352805060, 1352805090, 1352805120, 1352805150, 1352805180,
1352805210, 1352805240, 1352805270, 1352805300, 1352805330, 1352805360,
1352805390, 1352805420, 1352805450, 1352805480, 1352805510, 1352805540,
1352805570), class = c("POSIXct", "POSIXt"), tzone = ""), VE = c(36L,
31L, 32L, 55L, 39L, 45L, 46L, 60L, 56L, 53L, 58L, 60L, 30L, 38L,
55L, 40L, 47L, 52L, 33L, 34L, 58L, 38L, 39L, 33L, 39L, 50L, 38L,
32L, 32L, 41L, 44L, 35L, 48L, 51L, 59L, 35L, 51L, 56L, 39L, 35L
)), .Names = c("time", "VE"), row.names = c(NA, -40L), class = "data.frame")
df2 <- structure(list(time = structure(c(1352804400, 1352804430, 1352804460,
1352804490, 1352804520, 1352804550, 1352804580, 1352804610, 1352804640,
1352804670, 1352804700, 1352804730, 1352804760, 1352804790, 1352804820,
1352804850, 1352804880, 1352804910, 1352804940, 1352804970, 1352805000,
1352805030, 1352805060, 1352805090, 1352805120, 1352805150, 1352805180,
1352805210, 1352805240, 1352805270), class = c("POSIXct", "POSIXt"
), tzone = ""), VE = c(47L, 45L, 45L, 40L, 42L, 40L, 48L, 48L,
43L, 44L, 44L, 46L, 42L, 49L, 41L, 48L, 47L, 44L, 44L, 48L, 47L,
42L, 42L, 40L, 47L, 46L, 50L, 49L, 46L, 49L)), .Names = c("time",
"VE"), row.names = c(NA, -30L), class = "data.frame")
代码如下:
ggplot(df1,aes(x=time, y=VE))+geom_line(color='red',size=1)+geom_line(data=df2,aes(x=time, y=VE),colour="blue",size=2)
【问题讨论】:
你应该阅读 ggplot2 的介绍。基本上,您需要结合两个数据集,并使用美学映射。 【参考方案1】:具体来说,实现@baptiste 的评论:
dff <- rbind(data.frame(s=factor(1),df1),
data.frame(s=factor(2),df2))
ggplot(dff,aes(x=time, y=VE,colour=s,size=s))+
geom_line()+
scale_colour_manual(values=c("red","blue"))+
scale_size_manual(values=1:2)
【讨论】:
谢谢。使用您的答案,我使用了scale_color_manual
函数,它帮助我实现了我想要的
好的。我会说您应该接受该答案并将其作为您问题的单独/附加答案而不是作为问题的一部分发布......如果您将有两种不同的线条大小,我认为您应该允许这样做被合并到图例中(即将scale_size_manual
参数设置为与scale_colour_manual
参数相同,以便图例合并,而不是使用guide="none"
来抑制图例)【参考方案2】:
使用@Ben 的答案和cmets,删除extra-legend,然后重命名legend title 我写道:
dff <- rbind(data.frame(s=factor(1),df1),data.frame(s=factor(2),df2))
ggplot(dff,aes(x=time, y=VE,colour=s))+geom_line()+scale_colour_manual(values=c("red","blue"),labels=c('My label-1','My label-2'),name='Legend Title')+ scale_size_manual(values=c("red","blue"))+theme(axis.title.x = element_text(face="bold", size=16),axis.title.y= element_text(face="bold",size=16),axis.text.x = element_text(angle=0, vjust=0.5, size=14),axis.text.y = element_text(angle=0, vjust=0.5, size=14))
得到了
【讨论】:
以上是关于ggplot2@R 中两个不同大小系列的图例的主要内容,如果未能解决你的问题,请参考以下文章