names | R Documentation |
get or set worksheet names
## S3 method for class 'Workbook'
names(x)
## S3 replacement method for class 'Workbook'
names(x) <- value
x |
A |
value |
a character vector the same length as wb |
wb <- createWorkbook()
addWorksheet(wb, "S1")
addWorksheet(wb, "S2")
addWorksheet(wb, "S3")
names(wb)
names(wb)[[2]] <- "S2a"
names(wb)
names(wb) <- paste("Sheet", 1:3)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.