I need a code to export my output to excel 2007.I am dealing with observations of 15,000.Thank you -- View this message in context: http://r.789695.n4.nabble.com/help-tp2323542p2323542.html Sent from the Export many data to Excel 2007 mailing list archive at Nabble.com.
Hi write.table(tab, "clipboard", sep = "\t", row.names = FALSE) or write.table(tab, "somefile.xls", sep = "\t", row.names = FALSE) Regards Petr r-help-bounces at r-project.org napsal dne 13.08.2010 01:47:40:> > I need a code to export my output to excel 2007.I am dealing with > observations of 15,000.Thank you > -- > View this message in context:http://r.789695.n4.nabble.com/help-tp2323542p2323542.html> Sent from the Export many data to Excel 2007 mailing list archive atNabble.com.> > ______________________________________________ > R-help at r-project.org mailing list > https://stat.ethz.ch/mailman/listinfo/r-help > PLEASE do read the posting guidehttp://www.R-project.org/posting-guide.html> and provide commented, minimal, self-contained, reproducible code.
or library(xlsReadWrite) write.xls(tab, "somefile.xls") # not .xlsx or lots of other possibilities (e.g. RODBC, RExcel, gdata, WriteXLS) you would have found searching the mailling list archive or looking in the R import/export manual or the R wiki... Cheers, Hans-Peter
Please,when i export the output from R to excel.I am not getting all the 15,000 observations but only 2000.Thank you -- View this message in context: http://r.789695.n4.nabble.com/help-tp2323542p2324459.html Sent from the Export many data to Excel 2007 mailing list archive at Nabble.com.
Good afternoon! It may seem trivial to some/most of You, but I found it difficult to properly include a C++-based .dll into a package that I want to build for usage in R. I read through the "Writing R extensions..." & "R administration ..." instructions, but it seems I did not "grasp the bigger picture". The way I figured out to use the .dll in my package finally worked for using that package from the R console, but it gives multiple error and warning messages when running the RCMD check pkg command in the shell. What I did: I created the package skeleton via package.skeleton() including a function that makes both (1) a library.dynam() call to a .dll and (2) a .C() call including the name of the function in that DLL. Next, I run RCMD INSTALL pkg to install the package and then created a /lib folder in the installed package containing the .dll file. I tried alternatives, e.g., (a) containing a /src folder in may package skeleton with the .dll in it and/or (b) including zzz.R with a .First.lib function including the library call .... but nothing worked out when running the package check. help! thank You very much, MArtin [[alternative HTML version deleted]]