Am 17.06.2014 23:11, schrieb jim holtman:
You were using 'rownames' incorrectly. Here is the correct way:
library(XLConnect)
wb <- loadWorkbook("writeWorksheet.xlsx", create = TRUE)
createSheet(wb, name = "CO2")
writeWorksheet(wb, CO2, sheet = "CO2",rownames="Row Names")
saveWorkbook(wb)
Thank you I misunderstood the man file as I thougt if tehre is no
rownames=TRUE/FALSE I must support the names .
Tell me what you want to do,
Supporting the rownames in the ecel file
but it is solved thank you
______________________________________________
R-help@r-project.org 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.