如何更改要在条形图中分组的因子

时间:2015-06-05 20:14:26

标签: r plot bar-chart

我尝试使用R对一个阶乘anova数据集进行条形图。但是,R会自动绘制每个条形图,对应于我的数据集矩阵的不同列。如何对每个条形图进行条形图对应不同的行?

$(brew --prefix)/bin

1 个答案:

答案 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))

最后一个在这里: