Re: [R] Boxplots by variable

2009-02-02 Thread Adam D. I. Kramer
Does boxplot(as.data.frame(final)) do what you want? --Adam On Mon, 2 Feb 2009, Vemuri, Aparna wrote: Dear R users, I have a matrix "final" which looks like this: final oSO4 oNO3 mSO4 mNO3 [1,] 3.3728 0.2110 1.9517421 1.01883602 [2,] 0.8249 0.0697 1.5970292 0.113687

Re: [R] Boxplots by variable

2009-02-02 Thread Felipe Carrillo
Hi Vemuri: is this what you want? x <- "oSO4 oNO3 mSO4 mNO3 3.3728 0.2110 1.9517421 1.01883602 0.8249 0.0697 1.5970292 0.11368781 0.2636 0.1004 0.6012445 0.24356332 8.0072 0.3443 6.1016998 3.63207149 13.5079 0.6593 12.4011068 1.55323386 6.1293 0.1989 5.7620926 0.12884845 0.6004

Re: [R] Boxplots by variable

2009-02-02 Thread Mike Lawrence
Check out ggplot2: http://had.co.nz/ggplot2 Particularly: http://had.co.nz/ggplot2/geom_boxplot.html Looks like you'll have to melt your data to long format first though, here's a tutorial: http://www.statmethods.net/management/reshape.html On Mon, Feb 2, 2009 at 8:19 PM, Vemuri, Aparna wrote: