R中的多个条形图并排

时间:2016-05-01 15:47:10

标签: r bar-chart

我有两个这样的矢量:

multistakeuserutil<-c(24.0, 71.0, 75.0, 109.0, 134.0, 126.0, 117.0, 446.0, 283.0, 162.0, 109.0)
reguserUtil<-c(10.0, 50.0, 38.0, 67.0, 73.0, 72.0, 69.0, 263.0, 146.0,   87.0, 70.0)

现在,我使用以下代码行绘制multistakeuserutil:

barplot(multistakeuserutil,col="darkgreen")

然后我像这样绘制reguserUtil:

barplot(reguserUtil,col="red")

这给了我一个单独的情节。 但我希望这两个条形图在一张图片中并排放置,以便于比较。知道我该怎么做吗?

2 个答案:

答案 0 :(得分:5)

这可能对你有用。

test <- cbind(multistakeuserutil,reguserUtil)

barplot(test,beside=T)

enter image description here

如果你想做更好的比较,那么这对我来说是最好的。

test2 <- rbind(multistakeuserutil,reguserUtil)

barplot(test2,beside=T)

enter image description here

答案 1 :(得分:1)

使用mfrow()

par(mfrow = c(1:2))

barplot(multistakeuserutil,col="darkgreen") 
barplot(reguserUtil,col="red")

请点击此处了解更多详情和示例:http://www.statmethods.net/advgraphs/layout.html

enter image description here