geg_bar在ggplot2中有多种填充颜色

时间:2014-02-05 21:09:37

标签: r ggplot2 geom-bar

我有这种数据集:

comb<-data.frame(nom=c("A","B","C","A","B","C"),type=c(rep("1",3),rep("2",3)),val=c(1,3,2,3,2,2))

我希望将此结果与ggplot2

结合使用

enter image description here

但我只有这个

ggplot()+    geom_bar(data=comb,aes(x=nom, y=val,fill=type),stat='identity',position='dodge')

enter image description here

你有什么解决方案吗?

1 个答案:

答案 0 :(得分:4)

如果您希望所有条形图都有不同的颜色,则必须使用interactiontype的{​​{1}}:

nom

enter image description here