On Mon, Nov 17, 2008 at 3:42 PM, steve <[EMAIL PROTECTED]> wrote:
> Thank you. Here's my version, using melt instead of do.call(make.groups...
>
> library(reshape)
> fgl2 = melt(fgl[,-10])
> fgl2$type = fgl$type
> bwplot(value ~ type | variable, data = fgl2)

Or even more succintly:

fgl2 <- melt(fgl, id = "type")

Hadley

-- 
http://had.co.nz/

______________________________________________
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

Reply via email to