Re: [R] Boxplot Help for Neophyte

2006-02-20 Thread jim holtman
use: boxplot(list(myData1=myData1, myData2=myData2, myData3=myData3), main='', xlab='...') On 2/20/06, Alex Park <[EMAIL PROTECTED]> wrote: > > R helpers > > I am getting to grips with R but came across a small problem today that I > could not fix by myself. > > I have 3 text files, each wit

Re: [R] Boxplot Help for Neophyte

2006-02-20 Thread Marc Schwartz (via MN)
On Mon, 2006-02-20 at 20:27 +, Alex Park wrote: > R helpers > > I am getting to grips with R but came across a small problem today that I > could not fix by myself. > > I have 3 text files, each with a single column of data. I read them in > using: > > myData1<-scan("C:/Program Files/R/myD

Re: [R] Boxplot Help for Neophyte

2006-02-20 Thread Nolwenn LeMeur
Hi Alex, how about, myData<-data.frame("myData1"=myData1,"myData2"=myData2,"myData3"=myData3) boxplot(myData) Nolwenn ** Nolwenn Le Meur, PhD Fred Hutchinson Cancer Research Center Computational Biology 1100 Fairview Ave. N., M2-B876 P.O. Box 19024 Seattle, WA

[R] Boxplot Help for Neophyte

2006-02-20 Thread Alex Park
R helpers I am getting to grips with R but came across a small problem today that I could not fix by myself. I have 3 text files, each with a single column of data. I read them in using: myData1<-scan("C:/Program Files/R/myData1.txt") myData2<-scan("C:/Program Files/R/myData2.txt") myData3<-sc