| openxlsx {openxlsx} | R Documentation |
openxlsx simplifies the the process of writing and styling Excel xlsx files from R and removes the dependency on Java.
The openxlsx package uses global options to simplfy formatting:
options("openxlsx.borderColour" = "black")
options("openxlsx.borderStyle" = "thin")
options("openxlsx.dateFormat" = "mm/dd/yyyy")
options("openxlsx.datetimeFormat" = "yyyy-mm-dd hh:mm:ss")
options("openxlsx.numFmt" = NULL)
options("openxlsx.paperSize" = 9) ## A4
options("openxlsx.orientation" = "portrait") ## page orientation
See the Formatting vignette for examples.
Additional options
options("openxlsx.zipFlags" = "-9") ## set max zip compression level default is "-1"
vignette("Introduction", package = "openxlsx")
vignette("formatting", package = "openxlsx")
for examples