Dear Everyone, I am a novel user of the R package (less than a week). I am using the package to analyse some microarray data. I have successfully imported the data, and manipulated it, resulting in additional columns of data. However, I now want to extract all this new information from R for use outside the package. Can anyone tell me of any commands that would allow me to accomplish this? Many thanks in advance Stephen Moore. _________________________________________________________________ Chat online in real time with MSN Messenger http://messenger.msn.co.uk
Note: Please always set a "Subject" in e-mails, particularly to mailing lists!>>>>> "SteveM" == Steve Moore <ebrington at hotmail.com> >>>>> on Mon, 03 Mar 2003 12:12:16 +0000 writes:SteveM> Dear Everyone, SteveM> I am a novel user of the R package (less than a SteveM> week). I am using the package to analyse some SteveM> microarray data. I have successfully imported the SteveM> data, and manipulated it, resulting in additional SteveM> columns of data. However, I now want to extract all SteveM> this new information from R for use outside the SteveM> package. Can anyone tell me of any commands that SteveM> would allow me to accomplish this?
Download R-1.6.2 source code package from http://cran.r-project.org and compiled successfully. When run library(grid), get error message as the R version is 1.5.1, and cannot support grid package. The weird thing is that R.Version() returned as this R is actualy 1.5.1 Did anybody get the same problem? or I made something wrong? Thanks. ----------------------------------------> library(grid)Error: This is R 1.5.1, package grid needs >= 1.6.0> R.Version()$platform [1] "i686-pc-linux-gnu" $arch [1] "i686" $os [1] "linux-gnu" $system [1] "i686, linux-gnu" $status [1] "" $major [1] "1" $minor [1] "5.1" $year [1] "2002" $month [1] "06" $day [1] "17" $language [1] "R"
It might depend what package you are using, but in general you can save data in data frames and matrices to file by using write.table(). It is common to save it as a tab-delimited file so if your data is stored in a data frame called 'df' you want to do something like write.table(df, file="myresults.dat", sep="\t", quote=FALSE) The file myresults.dat can then be read by Excel and friends. For more information see help(write.table). Also, please use a subject when writing to r-help. Hope this helps! Henrik Bengtsson> -----Original Message----- > From: r-help-admin at stat.math.ethz.ch > [mailto:r-help-admin at stat.math.ethz.ch] On Behalf Of Steve Moore > Sent: den 3 mars 2003 23:12 > To: r-help at stat.math.ethz.ch > Subject: [R] (no subject) > > > Dear Everyone, > > I am a novel user of the R package (less than a week). I am > using the > package to analyse some microarray data. I have successfully > imported the > data, and manipulated it, resulting in additional columns of > data. However, > I now want to extract all this new information from R for use > outside the > package. Can anyone tell me of any commands that would allow me to > accomplish this? > > Many thanks in advance > > Stephen Moore. > > > > > > _________________________________________________________________ > Chat online in real time with MSN Messenger http://messenger.msn.co.uk > > ______________________________________________ > R-help at stat.math.ethz.ch mailing list > http://www.stat.math.ethz.ch/mailman/listinfo/> r-help > >
Hello all, I want to create webpages which can display the R results. The first step is essentially getting input from client, generating graphics and returning a page containing those images. What should I do for this? Are there some sources on the web? Any hints will be very helpful. Thanks very much :) Yan
See http://www.math.montana.edu/Rweb/ On Monday 03 March 2003 11:00 pm, Bai Yan wrote:> Hello all, > > I want to create webpages which can display the R results. The first step > is essentially getting input from client, generating graphics and > returning a page containing those images. > > What should I do for this? Are there some sources on the web? Any hints > will be very helpful. > > Thanks very much :) > > Yan > > ______________________________________________ > R-help at stat.math.ethz.ch mailing list > http://www.stat.math.ethz.ch/mailman/listinfo/r-help