I've made a loop to create multiple boxplots. The thing is, I want to save all the boxplots without overwriting each other. Any suggestions?
This is my current code:
boxplot <- list()
for (x in 1:nrow(checkresults)){
boxplots <- boxplot(PIM[,x], MYC [,x], OBX[,x], WDR[,x], EV[,x],
main=colnames(PIM)[x],
xlab="PIM, MYC, OBX, WDR, EV")
}
forloops in R. You can useapplyorlapply, but right now, I have only vague idea about the structure of your data. And once again, please don't use loops. – aL3xa Mar 14 '11 at 13:28forloops in R. This is an example of when to use them instead of*apply. It wouldn't work. – Joris Meys Mar 14 '11 at 16:14