Re: [R] Migrating from S-Plus to R - Exporting Tables

2008-07-03 Thread Gustaf Rydevik
On Thu, Jul 3, 2008 at 2:17 AM, jim holtman [EMAIL PROTECTED] wrote: Does something like this get you close: x - list() keys - LETTERS[1:6] # create for (i in keys){ x[[i]] - data.frame(a=1:5, b=1:5, c=1:5) } # output output - file('tempxx.txt', 'w') for (i in keys){

[R] Migrating from S-Plus to R - Exporting Tables

2008-07-02 Thread Leandro Marino
Hi, I want to export an table using the write.table and i want is this format: (this table was exported in s-plus) Q01 row.names Num Percmeabstdev min P5 P10 P25 P50 P75 P90 P95 max A 10237 47.88 183.48 38.84 86.98 126.52

Re: [R] Migrating from S-Plus to R - Exporting Tables

2008-07-02 Thread jim holtman
? Thanks for the advance! Leandro Marino -Mensagem original- De: jim holtman [mailto:[EMAIL PROTECTED] Enviada em: quarta-feira, 2 de julho de 2008 12:47 Para: Leandro Marino Assunto: Re: [R] Migrating from S-Plus to R - Exporting Tables It is hard to tell without providing