Re: [R] how to export.RDA file to a text file?

2007-09-25 Thread Vladimir Eremeev
attach(file_name.RDA) dump(list=ls(2),file=file_name.R) This creates file file_name.R, containing R commands, executed to produce the contents of the file_name.RDA Data frames and matrices can be stored in ASCII file in tabular form using write.table() You can also consider cat() Jittima

[R] how to export.RDA file to a text file?

2007-09-24 Thread Jittima Piriyapongsa
Hi, Does anyone know how to export .RDA file (in R program) to a normal text file (readable by any text editor)? Also, how to export an object in R program into a text file (not .RDA file)? Thank you. Jittima __ R-help@r-project.org mailing list

Re: [R] how to export.RDA file to a text file?

2007-09-24 Thread Charles C. Berry
On Mon, 24 Sep 2007, Stephen Weigand wrote: On 9/24/07, Jittima Piriyapongsa [EMAIL PROTECTED] wrote: Hi, Does anyone know how to export .RDA file (in R program) to a normal text file (readable by any text editor)? Is this what you mean? load( old.RDA ) save( list=ls(),