[R] Odp: Newbie:Export Data into Excel from R
Petr PIKAL
petr.pikal at precheza.cz
Mon Mar 3 11:53:21 CET 2008
Hi
you can also
write.table(probe_gene, file = "c:/foo.xls", sep = "\t", col.names = NA)
or
write.table(tab, "clipboard", sep = "\t" , col.names = NA)
and after opening Excel just press Ctrl-V. Maybe you also find usefull to
add row.names=FALSE into export construction.
Petr
petr.pikal at precheza.cz
r-help-bounces at r-project.org napsal dne 02.03.2008 16:12:51:
>
> Hi,
>
> All i want is to export my list into c: drive and save it as csv file
and
> manually import into Excel.
>
> I have the read the article but i am having issues
> http://pbil.univ-lyon1.fr/library/base/html/write.table.html
>
>
> > excel<-write.table(probe_gene, file = "c:\foo.csv", sep = ",",
col.names =
> > NA)
> Error in file(file, ifelse(append, "a", "w")) :
>
> unable to open connection
> In addition: Warning message:
> cannot open file 'c:\foo.csv', reason 'Invalid argument'
>
> any suggestions?
>
> thanks,
> chris
>
>
> --
> View this message in context:
http://www.nabble.com/Newbie%3AExport-Data-into-
> Excel-from-R-tp15788950p15788950.html
> Sent from the R help mailing list archive at Nabble.com.
>
> ______________________________________________
> R-help at r-project.org mailing list
> https://stat.ethz.ch/mailman/listinfo/r-help
> PLEASE do read the posting guide
http://www.R-project.org/posting-guide.html
> and provide commented, minimal, self-contained, reproducible code.
More information about the R-help
mailing list