appendWorksheet-methods.Rd
Appends data to worksheets of a workbook
.
# S4 method for class 'workbook,ANY,character'
appendWorksheet(object,data,sheet,header,rownames)
# S4 method for class 'workbook,ANY,numeric'
appendWorksheet(object,data,sheet,header,rownames)
The workbook
to write to
Data to append
The name or index of the sheet to append the data
to
Specifies if the column names should be written. The default is TRUE
.
Name (character
) of column to use for the row names of the provided
data
object. If specified, the row names of the data object (data.frame
) will be
included as an additional column with the specified name. If rownames = NULL
(default),
no row names will be included.
Appends data
to the worksheet specified by sheet
. Data will be appended at the
bottom and left most column containing some data. If more complex "appending schemes" are required
you may make direct use of writeWorksheet
.
if (FALSE) { # \dontrun{
# mtcars xlsx file from demoFiles subfolder of package XLConnect
demoExcelFile <- system.file("demoFiles/mtcars.xlsx", package = "XLConnect")
# Load workbook
wb <- loadWorkbook(demoExcelFile)
# Append mtcars data set to worksheet named 'mtcars'
appendWorksheet(wb, mtcars, sheet = "mtcars")
} # }