Re: [R] Boxplot from matrices

2009-01-11 Thread johnhj
Thank you very much for you help... Carlos J. Gil Bellosta wrote: > > Hello, > > The following code may help you: > >> my.matrix <- matrix( rnorm(16), ncol = 4 ) >> boxplot( my.matrix ~ col( my.matrix ) ) > > Best regards, > > Carlos J. Gil Bellosta > http://www.datanalytics.com > > >

Re: [R] Boxplot from matrices

2009-01-11 Thread Carlos J. Gil Bellosta
Hello, The following code may help you: > my.matrix <- matrix( rnorm(16), ncol = 4 ) > boxplot( my.matrix ~ col( my.matrix ) ) Best regards, Carlos J. Gil Bellosta http://www.datanalytics.com On Sun, 2009-01-11 at 05:23 -0800, johnhj wrote: > Hii, > > I will create boxplots from matrices.