[R] store variable as tab-del. txt-file

2008-01-24 Thread Schmitt, Corinna
Hallo, how can I store a variable as a tab-delimited txt-file? I crated a variable with the following commands: fit12-lmFit(qrg[,1:2]) t12-toptable(fit12,adjust=fdr,number=25,genelist=qrg$genes[,1]) t12 ID logFC t P.Value adj.P.ValB 522PLAU_OP

Re: [R] store variable as tab-del. txt-file

2008-01-24 Thread Henrique Dallazuanna
See ?write.table On 24/01/2008, Schmitt, Corinna [EMAIL PROTECTED] wrote: Hallo, how can I store a variable as a tab-delimited txt-file? I crated a variable with the following commands: fit12-lmFit(qrg[,1:2]) t12-toptable(fit12,adjust=fdr,number=25,genelist=qrg$genes[,1]) t12

Re: [R] store variable as tab-del. txt-file

2008-01-24 Thread Julien Barnier
Hi, Now I want to store t12 as a tab-delimited txt-file to use it in other programm. How can I realize this? Did you take a look at the write.table() function ? You can supply «\t» as «sep» argument to get a tab-delimited file. Hope that helps, Julien -- Julien Barnier Groupe de recherche

Re: [R] store variable as tab-del. txt-file

2008-01-24 Thread Schmitt, Corinna
Hallo Julien, thanks for the hint. It works now. Corinna -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Julien Barnier Sent: Thursday, January 24, 2008 11:08 AM To: [EMAIL PROTECTED] Subject: Re: [R] store variable as tab-del. txt-file Hi, Now