标准的R绘图产生积于一身30个箱线图,当我使用此代码:
boxplot(Abundance[Quartile==1]~Year[Quartile==1],col="LightBlue",main="Quartile1 (Rare)")
我想产生GGPLOT2类似的东西。 到目前为止,我使用这个:
d1 = data.frame(x=data$Year[Quartile==1],y=data$Abundance[Quartile==1])
a <- ggplot(d1,aes(x,y))
a + geom_boxplot()
共有30年的数据。 在每年有145种。 在每一年的145种被分为1-4四分位数。
不过,我只获得使用这种单箱线图。 任何想法如何获取沿x轴30个箱线图(一年一个)? 任何帮助非常赞赏。
共有30年的数据。 在每年有145种。 在每一年的145种被分为1-4四分位数。