,我有以下的數據幀:GGPLOT2:劇情意味着與geom_bar
test2 <- data.frame(groups = c(rep("group1",4), rep("group2",4)),
X2 = c(rnorm(4), rnorm(4)) ,
label = c(rep(1,2),rep(2,2),rep(1,2),rep(2,2)))
,我使用繪製條形圖每組每個標籤:
ggplot(test2, aes(label, X2, fill=as.factor(groups))) +
geom_bar(position="dodge", stat="identity")
然而,我似乎無法找到stat="mean"
,因此我可以在每個條形圖上繪製手段而不是標識。
感謝您的任何幫助。
本教程提供瞭如何很好的說明要實現這一點:http://www.r-bloggers.com/using-r-barplot-with-ggplot2/ – seaotternerd
可能重複[繪製ggplot2中每個級別的平均值](http://stackoverflow.com/questions/11857935/plotting-the-average-values-for-each-level-in-ggplot2) – seaotternerd