ron-r
3/2/2014 - 8:17 AM

showing a box plot matrix of all variables in a data frame

showing a box plot matrix of all variables in a data frame

library(reshape)
meltData <- melt(s2_1data)
ibrary(ggplot)
p <- ggplot(meltData, aes(factor(variable), value)) 
p + geom_boxplot() + facet_wrap(~variable, scale="free")