Re: [R] Exporting from R to Excel or .csv

2015-09-13 Thread Ryan Shuell
This is my first time posting here library(BradleyTerry2) library(xlsx) data(flatlizards) str(flatlizards) a <- data.frame(x=rnorm(10), y=runif(10)) b <- data.frame(w=rnorm(20), z=runif(20)) ablist <- list(a, b) write.xlsx(mydata, "c:/Test/mydata.xlsx") On Tuesday, June 16, 2015 at

Re: [R] Exporting from R to Excel or .csv

2015-06-16 Thread Jeff Newmiller
A CSV with multiple data frames would not conform to the standard definition of a CSV file. The XLConnect package can be used to generate Excel workbooks. There are other packages also, but they are mostly either too simplified to allow filling multiple sheets or too finicky for my taste. That