在ggplot中显示条形图的图例

时间:2015-01-22 21:08:15

标签: r ggplot2 geom-bar

如何显示以下ggplot条形图的图例?

tmp <- data.frame(group = LETTERS[1:10], id = 10:1, a = runif(10), b = runif(10))

ggplot(tmp) + geom_bar(aes(x = reorder(group, id), a + b, group = 1), stat = 'identity')

更新:我使用grid.arrange中的gridExtra排列了两个图表。两个图表都有相同数量的条形图,但其中一个有图例。我认为通过在第二个图表中添加任何图例,我将对齐条形图(使两个图形的绘图区域的宽度相同):

tmp <- data.frame(group = LETTERS[1:10], id = 10:1, 
                  a = runif(10), b = runif(10), c = rnorm(10))

p1 <- ggplot(tmp) + geom_bar(aes(x = reorder(group, id), c, fill = a), stat = 'identity')
p2 <- ggplot(tmp) + geom_bar(aes(x = reorder(group, id), a + b, group = 1), stat = 'identity')

library(gridExtra)

grid.arrange(p1, p2, heights = c(2, 1) )

现在,它看起来像这样:

enter image description here

2 个答案:

答案 0 :(得分:2)

您可以尝试使用p2这样的内容,这将为底部图形创建一个新图例。

p2 <- ggplot(tmp) + geom_bar(aes(x = reorder(group, id), a + b, group = 1, fill = 0), stat = 'identity') +
    guides(fill=guide_legend(title="Title"))

答案 1 :(得分:0)

这就是我需要的

 guides(fill=guide_legend(title="Title"))

由于