0
多個填充顏色我有這樣的數據集:geom_bar在GGPLOT2
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')
您有任何解決方案嗎?