我有这种数据集:
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
:
但我只有这个
ggplot()+ geom_bar(data=comb,aes(x=nom, y=val,fill=type),stat='identity',position='dodge')
你有什么解决方案吗?
答案 0 :(得分:4)
如果您希望所有条形图都有不同的颜色,则必须使用interaction
和type
的{{1}}:
nom