I'm having an issue when trying to make side by side boxplots by factors. I've read several examples, but for some reason my plots are not displaying correctly. I think it's trying to plot a boxplot for each value, even though I specified it as a factor.
I'm using the following code:
samp.norm = rnorm(1000,0,1)
samp.exp = rexp(1000,1)
samp.unif = runif(1000)
samp = c(samp.norm,samp.exp,samp.unif)
dist = c( rep("norm",1000), rep("exp",1000), rep("unif",1000) )
DATA = as.data.frame(cbind(samp,dist))
DATA$dist= as.factor(DATA$dist)
p = ggplot(DATA, aes(x=factor(DATA$dist), y = DATA$samp)) + geom_boxplot()
p
