Re: [R] boxplot on all the columns

2010-07-12 Thread Joshua Wiley
On Sun, Jul 11, 2010 at 11:17 PM, Tal Galili wrote: > Actually, > boxplot (bhtest1) > Should do what you want... Just a quick follow up, if you wanted a separate plot for each column (I'm imagining the data resulting from your cbind() of 30 files in your other thread for instance), you could use

Re: [R] boxplot on all the columns

2010-07-11 Thread Tal Galili
Actually, boxplot (bhtest1) Should do what you want... Tal Contact Details:--- Contact me: tal.gal...@gmail.com | 972-52-7275845 Read me: www.talgalili.com (Hebrew) | www.biostatistics.co.il (Hebrew) | www.r-statistics.com (Eng

[R] boxplot on all the columns

2010-07-11 Thread jd6688
how to use boxplot on all the columns from he date frame instead of manually entering the columns like below bhtest1 <- read.table("bhtest1.txt", header=TRUE) boxplot (bhtest1[,2], bhtest1[,3], bhtest1[, 4], bhtest1[,5], bhtest1[,6], bhtest1[,7]) please help, Thanks, -- View this mes