在不影响绘图的情况下控制ggplot2图例

时间:2013-05-03 09:48:14

标签: r plot ggplot2 legend

我正在用ggplot2绘制线条,如下所示:

ggplot(iris, aes(Petal.Width,Petal.Length,color=Species)) + geom_line() + theme_bw()

current plot

我发现传奇标记很小,所以我希望它们更大。如果我改变大小,情节上的线也会改变:

ggplot(iris, aes(Petal.Width,Petal.Length,color=Species)) + geom_line(size=4) + theme_bw()

thick plot lines

但我只想在图例中看到粗线,我希望图上的线条很薄。我尝试使用legend.key.size,但它改变了标记的平方,而不是行的宽度:

library(grid)  # for unit
ggplot(iris,aes(Petal.Width,Petal.Length,color=Species))+geom_line()+theme_bw() + theme(legend.key.size=unit(1,"cm"))

big legend keys

我也尝试过使用积分:

ggplot(iris,aes(Petal.Width,Petal.Length,color=Species)) + geom_line() + geom_point(size=4) + theme_bw()

但当然它仍会影响情节和传奇:

points

我想在图例中使用线条,为图例使用点/点。

所以我要问两件事:

  1. 如何在不更改绘图的情况下更改图例中的线宽?
  2. 如何在图中绘制线条,但在图例中绘制点/点/方块?

1 个答案:

答案 0 :(得分:97)

要仅在图例中更改线宽,您应使用函数guides(),然后使用colour= guide_legend()使用override.aes=并设置size=。这将覆盖绘图中使用的大小,并将仅为图例使用新的大小值。

ggplot(iris,aes(Petal.Width,Petal.Length,color=Species))+geom_line()+theme_bw()+
       guides(colour = guide_legend(override.aes = list(size=3)))

enter image description here

要获取图例中的点和绘图解决方法中的线条,请添加geom_point(size=0)以确保点不可见,然后在guides()设置linetype=0以删除线和size=3获得更大的积分。

ggplot(iris,aes(Petal.Width,Petal.Length,color=Species))+geom_line()+theme_bw()+
       geom_point(size=0)+
       guides(colour = guide_legend(override.aes = list(size=3,linetype=0)))

enter image description here