为multhist指定颜色

时间:2012-03-18 22:54:02

标签: r

我想使用plotrix库中的multhist来绘制隔行直方图。我需要指定每个直方图的颜色。我试过这个:

a <- c(1,2,3)
b <- c(1,1,2)
c <- c(1,1,1)
l <- list(1,b,c)
mycolors <- list("red", "green", "blue")
multhist(l, col=mycolors)

但它不喜欢我指定颜色的方式。有没有办法做到这一点?

1 个答案:

答案 0 :(得分:2)

事实证明它就像这个一样简单

multhist(l, col=c("red","green","blue"))