我尝试使用R对一个阶乘anova数据集进行条形图。但是,R会自动绘制每个条形图,对应于我的数据集矩阵的不同列。如何对每个条形图进行条形图对应不同的行?
$(brew --prefix)/bin
答案 0 :(得分:1)
尝试以下方法之一:
barplot(as.matrix(ab_group),legend.text = TRUE,col=1:nrow(ab_group))
barplot(as.matrix(ab_group),legend.text = TRUE,
beside=T,col=1:nrow(ab_group))
barplot(as.matrix(t(ab_group)),legend.text = TRUE,col=1:ncol(ab_group))
barplot(as.matrix(t(ab_group)),legend.text = TRUE,
beside=T,col=1:ncol(ab_group))
最后一个在这里: