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 message in context: http://r.789695.n4.nabble.com/boxplot-on-all-the-columns-tp2285693p2285693.html Sent from the R help mailing list archive at Nabble.com.
Actually, boxplot (bhtest1) Should do what you want... Tal ----------------Contact Details:------------------------------------------------------- Contact me: Tal.Galili@gmail.com | 972-52-7275845 Read me: www.talgalili.com (Hebrew) | www.biostatistics.co.il (Hebrew) | www.r-statistics.com (English) ---------------------------------------------------------------------------------------------- On Mon, Jul 12, 2010 at 7:14 AM, jd6688 <jdsignature@gmail.com> wrote:> boxplot (bhtest1[[alternative HTML version deleted]]
Hi r-help-bounces at r-project.org napsal dne 12.07.2010 06:14:00:> > > > how to use boxplot on all the columns from he date frame instead ofmanually> 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]....) >What is wrong with boxplot(bhtest1) Regards> please help, Thanks, > > > -- > View this message in context:http://r.789695.n4.nabble.com/boxplot-on-all-> the-columns-tp2285693p2285693.html > Sent from the R help mailing list archive at Nabble.com. > > ______________________________________________ > R-help at r-project.org mailing list > https://stat.ethz.ch/mailman/listinfo/r-help > PLEASE do read the posting guidehttp://www.R-project.org/posting-guide.html> and provide commented, minimal, self-contained, reproducible code.