An embedded and charset-unspecified text was scrubbed... Name: not available URL: <https://stat.ethz.ch/pipermail/r-sig-geo/attachments/20110917/d676af5a/attachment.pl>
write estimates to Excel
3 messages · Rafael Terra, Paul Hiemstra, Hans-Jörg Bibiko
1 day later
On 09/17/2011 11:16 PM, Rafael Terra wrote:
Dear R users, Does anyone knows if there is some function to write panel data estimates to an excel file? I know it is possible to write in LaTex form, but at least for now I have to save the results in a spreadsheet. Thanks Rafael Terra PhD candidate in Economics - Sao Paulo School of Economics (FGV) email:rflterra at yahoo.com.br [[alternative HTML version deleted]]
_______________________________________________ R-sig-Geo mailing list R-sig-Geo at r-project.org https://stat.ethz.ch/mailman/listinfo/r-sig-geo
Hi, Saving the file as a comma separated file (csv) should be fine for reading in Excel. See the write.csv function. good luck, Paul
Paul Hiemstra, Ph.D. Global Climate Division Royal Netherlands Meteorological Institute (KNMI) Wilhelminalaan 10 | 3732 GK | De Bilt | Kamer B 3.39 P.O. Box 201 | 3730 AE | De Bilt tel: +31 30 2206 494 http://intamap.geo.uu.nl/~paul http://nl.linkedin.com/pub/paul-hiemstra/20/30b/770
On 19 Sep 2011, at 10:49, Paul Hiemstra wrote:
On 09/17/2011 11:16 PM, Rafael Terra wrote:
Does anyone knows if there is some function to write panel data estimates to an excel file? I know it is possible to write in LaTex form, but at least for now I have to save the results in a spreadsheet.
Saving the file as a comma separated file (csv) should be fine for reading in Excel. See the write.csv function.
An other option is to open your desired object in the "R Data Editor", select the part you want to use in Excel, and then either drag&drop the selection to an Excel sheet or press ?C to copy the data into the clipboard (right-click into the selection gives the context menu for more). Cheers, --Hans