Re: [R] multiple boxplots using boxplot

2008-03-01 Thread Matthias Kohl
Hi Marek, use a list instead of a data.frame; e.g. boxplot(list(x = rnorm(10), y = rnorm(20))) hth, Matthias Marek Bartkuhn wrote: > Hi, > > I have data in 3 vectors a,b and c looking like > > eg a:1.2 3.4 1.4 .. > > > I like to have the data from ea

[R] multiple boxplots using boxplot

2008-03-01 Thread Marek Bartkuhn
Hi, I have data in 3 vectors a,b and c looking like eg a: 1.2 3.4 1.4 .. I like to have the data from each vector as a boxplot, but the 3 boxplots within one graph. One example is the first graph at http://www.statmethods.net/graphs/boxplot.html Unfor