Re: [R] boxplot() from list

2004-09-12 Thread Marc Schwartz
On Sun, 2004-09-12 at 10:10, Laura Quinn wrote: I have a list containing 48 objects (each with 30 rows and 4 columns, all numeric), and wish to produce 4 boxplot series (with 48 plots in each) , one for each column of each object. Basically I want a boxplot from boxplot(mylist[[]][,i])

RE: [R] boxplot() from list

2004-09-12 Thread John Fox
Dear Laura, You don't say what kind of objects are in the list, but suppose that they are matrices; here's a scaled-down example using 3 list elements: M1 - matrix(rnorm(30*4), 48, 4) M2 - matrix(rnorm(30*4), 48, 4) M3 - matrix(rnorm(30*4), 48, 4) L - list(M1=M1, M2=M2, M3=M3) par(mfrow=c(3,

Re: [R] boxplot() from list

2004-09-12 Thread Prof Brian Ripley
On Sun, 12 Sep 2004, Marc Schwartz wrote: On Sun, 2004-09-12 at 10:10, Laura Quinn wrote: I have a list containing 48 objects (each with 30 rows and 4 columns, all numeric), and wish to produce 4 boxplot series (with 48 plots in each) , one for each column of each object. Basically I

Re: [R] boxplot() from list

2004-09-12 Thread Marc Schwartz
On Sun, 2004-09-12 at 11:42, Prof Brian Ripley wrote: On Sun, 12 Sep 2004, Marc Schwartz wrote: On Sun, 2004-09-12 at 10:10, Laura Quinn wrote: I have a list containing 48 objects (each with 30 rows and 4 columns, all numeric), and wish to produce 4 boxplot series (with 48 plots in