Re: [R] Exporting data from R into an Excel File on Mac

2012-06-21 Thread zgu9
You can try the following line. write.csv(x,file="x.csv") Eric Maureen Hayden wrote > > Dear R Professionals, > > I am currently an intern at the University of Rhode Island and I need to > know how to export data from R into an Excel file. As it is my > understanding, xlsReadWrite is not availa

Re: [R] Exporting data from R into an Excel File on Mac

2012-06-21 Thread jim holtman
Check out the XLConnect package since it will allow you to write EXCEL workbooks directly. On Thu, Jun 21, 2012 at 2:37 PM, Maureen Hayden wrote: > Dear R Professionals, > > I am currently an intern at the University of Rhode Island and I need to > know how to export data from R into an Excel fil

Re: [R] Exporting data from R into an Excel File on Mac

2012-06-21 Thread Sarah Goslee
write.table() can easily export delimited text files that can be opened in the spreadsheet of your choice. If you need to export Excel specifically, rather than something Excel can open, you'll need a different answerer. Sarah On Thu, Jun 21, 2012 at 2:37 PM, Maureen Hayden wrote: > Dear R Prof

[R] Exporting data from R into an Excel File on Mac

2012-06-21 Thread Maureen Hayden
Dear R Professionals, I am currently an intern at the University of Rhode Island and I need to know how to export data from R into an Excel file. As it is my understanding, xlsReadWrite is not available for mac. Is there another package available for mac users to be able to perform this function.