有没有办法将2个箱图组合成1个?

时间:2018-01-19 01:06:17

标签: r boxplot

到目前为止我的代码给了我2个箱图,但我只是想知道是否

有一种方法可以将这两个箱图组合成一个(通过组合" Type_1"和" Type_2)。

ValidationContext

1 个答案:

答案 0 :(得分:1)

我强烈建议使用ggplot2。箱形图很容易创建。例如,使用iris数据集(因为您没有提供数据):

library(ggplot2)
plot1 <- ggplot(data = iris, aes(x=Species, y=Sepal.Width)) +
geom_boxplot()

将根据物种类型为您提供三个箱图:

enter image description here

可在此处找到更多信息:http://t-redactyl.io/blog/2016/04/creating-plots-in-r-using-ggplot2-part-10-boxplots.html