Re: [R] help- subtitles for multiple charts

2011-06-24 Thread jalen
Thank you for your help, David. This is what I needed! -- View this message in context: http://r.789695.n4.nabble.com/help-subtitles-for-multiple-charts-tp3620453p3622926.html Sent from the R help mailing list archive at Nabble.com. __ R-help@r-project

Re: [R] help- subtitles for multiple charts

2011-06-23 Thread jalen
http://r.789695.n4.nabble.com/file/n3620982/mbeFORUM.csv mbeFORUM.csv I uploaded my data and one more time the script (*adjusted version*): pMBE<- MBE[MBE$left!=0,] pMBE$bt<- interaction(pMBE$Block,pMBE$trt) par(mfrow=c(3,3), oma=c(2,0,2,0)) for(i in unique(pMBE$bt)){ ss <- pMBE$bt==i plot(pMBE$

[R] help- subtitles for multiple charts

2011-06-23 Thread jalen
Hello, I have a problem with my script. I don'y know how to apply subtitles. I have 9 charts per page (for combination of 3 blocks and 3 treatments). I want to have subtitles for this interaction (e.g. Block A Trt 1, Block A Trt 2, ...) MBE$bt<- interaction(MBE$Block,MBE$trt) par(mfrow=c(3,3)) for