The standard R line creates 30 boxes in one graph when I use this code:
boxplot(Abundance[Quartile==1]~Year[Quartile==1],col="LightBlue",main="Quartile1 (Rare)")
I would like to create something similar in ggplot2. While I'm using this:
d1 = data.frame(x=data$Year[Quartile==1],y=data$Abundance[Quartile==1]) a <- ggplot(d1,aes(x,y)) a + geom_boxplot()
There are 30 years of data. In each year, there are 145 species. In each year, 145 species are divided into quartiles 1-4.
However, I only get one notepad using this. Any idea how to get 30 boxes (one for each year) along the x axis? Any help is greatly appreciated.
There are 30 years of data. In each year, there are 145 species. In each year, 145 species are divided into quartiles 1-4.
source share