[R] boxplot help

2008-08-01 Thread Rajasekaramya
hi I have list of matrix of lenggth 61 containg the mean values..I want to make a boxplot for each of the matrix. I used a for loop but i cant figure out the way to save in the boxplots > all.the.mean [[1]] mean 0.5 o.6 0.8 [[2]] 0.6 0.6 0.9 now i want the boxplot for each of the matrix in a se

Re: [R] boxplot help

2008-08-02 Thread jim holtman
Save them to a file in your favorite format (I like PDF): pdf('yourfile.pdf') for(i in 1:length(all.the.mean) { boxplot(all.the.mean[[i]] } dev.off() On Fri, Aug 1, 2008 at 5:16 PM, Rajasekaramya <[EMAIL PROTECTED]> wrote: > > hi > > I have list of matrix of lenggth 61 containg the mean value

Re: [R] boxplot help

2008-08-03 Thread Bernardo Rangel Tura
Em Sex, 2008-08-01 às 14:16 -0700, Rajasekaramya escreveu: > hi > > I have list of matrix of lenggth 61 containg the mean values..I want to make > a boxplot for each of the matrix. > I used a for loop but i cant figure out the way to save in the boxplots > > > all.the.mean > [[1]] > mean > 0.5 >