我想改变beanplot中各行的颜色。使用col,我可以改变bean区域的颜色,bean内的所有行,bean外的所有行以及每个bean的平均行数。我想根据变量为不同的行分配不同的颜色。
x <- rnorm(15)
beanplot(x,ll = 1, col = c(0,1,1,2),
side = "both", axes = FALSE,method = "stack")
我想根据矢量colpref
指定颜色colpref <- c(5, 5, 3, 5, 5, 3, 5, 5, 3, 3, 5, 5, 5, 3, 3)