|
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. Sincerely, Maureen J Hayden University of Rhode Island Class of 2015 Marine Biology Major [[alternative HTML version deleted]] ______________________________________________ [hidden email] 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. |
|
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 <[hidden email]> 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 available for mac. Is there another > package available for mac users to be able to perform this function. > > Sincerely, > > Maureen J Hayden > University of Rhode Island > Class of 2015 > Marine Biology Major -- Sarah Goslee http://www.functionaldiversity.org ______________________________________________ [hidden email] 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. |
|
In reply to this post by Maureen Hayden
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 <[hidden email]> 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 available for mac. Is there another > package available for mac users to be able to perform this function. > > Sincerely, > > Maureen J Hayden > University of Rhode Island > Class of 2015 > Marine Biology Major > > [[alternative HTML version deleted]] > > ______________________________________________ > [hidden email] 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. -- Jim Holtman Data Munger Guru What is the problem that you are trying to solve? Tell me what you want to do, not how you want to do it. ______________________________________________ [hidden email] 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. |
|
In reply to this post by Maureen Hayden
You can try the following line.
write.csv(x,file="x.csv") Eric
|
| Powered by Nabble | Edit this page |
