这让我困惑了好一阵子……
我想用不同的data.frames为两个不同的geoms(geom_bar)显示两个不同的图例。
第一个图例应该有标题“边框”(由 df.1 的边框填充),第二个应该有标题“产品”(由 df.2 的产品填充)。两个 data.frames 都有共同的 column=category 。
你能解释一下吗?
这是示例
#library(ggplot2)
df.1 <- data.frame(category=c("A","A","A","B","B","B"),
border=c("I","II","III","I","II","III"),
value=c(1,2,1,2,1,2)
)
df.2 <- data.frame(category=c("A","A","A","B","B","B"),
product=c("P1","P2","P3","P1","P2","P3"),
value=c(1,2,3,3,1,2)
)
ggplot()+
geom_bar(aes(x=category, y=value, fill=border), data=df.1, width=.3)+
geom_bar(aes(x=category, y=value, fill=product), data=df.2, position="dodge", width=.25)