在ggplot中创建多列图例

时间:2013-08-23 10:22:52

标签: r plot ggplot2

我有以下脚本,假设 创建一个包含两个列图例的图。

 #!/usr/bin/Rscript
library(ggplot2)
library(plyr)
library(reshape2)
library(scales)

file <- "http://dpaste.com/1354089/plain/";
dat <-read.table(file,header=TRUE);
datm <- melt(dat)

# Plot them
ggplot(datm,aes(x = variable,y = value,fill = Term)) +
geom_bar(position = "fill") +
scale_y_continuous(labels = percent_format())+
theme(legend.direction ="vertical",legend.position = "bottom")+

guides(color=guide_legend(ncol=2))+ # this doesn't seem to work

ggsave(file="~/Desktop/test.pdf",width=11,height=11)

但它创造了这个数字 enter image description here

我该如何正确地做到这一点?

1 个答案:

答案 0 :(得分:89)

您必须将指南分配给正确的美学,并使用填充:

guides(fill=guide_legend(ncol=2))

你应该用geom_bar来处理警告