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 plot

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. > > > > Ba

RE: [R] boxplot() from list

2004-09-12 Thread John Fox
1=M1, M2=M2, M3=M3) par(mfrow=c(3, 4)) lapply(L, function(x) apply(x, 2, boxplot)) I hope that this helps, John > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of Laura Quinn > Sent: Sunday, September 12, 2004 10:10 AM > To: [EMAI

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]) >

[R] boxplot() from list

2004-09-12 Thread Laura Quinn
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]) for i in 1:4. It seems that I can create a boxplot of leng