I would like to plot an INDIVIDUAL box plot for each unrelated column in a data frame. I thought I was on the right track with boxplot.matrix from the sfs
boxplot.matrix
sfs
I used iteration to do this. I think perhaps I wasn't clear in the original question. Thanks for the responses none the less.
par(mfrow=c(2,5)) for (i in 1:length(plotdata)) { boxplot(plotdata[,i], main=names(plotdata[i]), type="l") }