save a Workbook object to file
saveWorkbook(wb, file, overwrite = FALSE)
A Workbook object to write to file
A character string naming an xlsx file
If TRUE
, overwrite any existing file.
# NOT RUN {
## Create a new workbook and add a worksheet
wb <- createWorkbook("Creator of workbook")
addWorksheet(wb, sheetName = "My first worksheet")
## Save workbook to working directory
# }
# NOT RUN {
saveWorkbook(wb, file = "saveWorkbookExample.xlsx", overwrite = TRUE)
# }
Run the code above in your browser using DataLab