sheets | R Documentation |
DEPRECATED. Use names().
sheets(wb)
wb |
A workbook object |
DEPRECATED. Use names()
Name of worksheet(s) for a given index
Alexander Walker
names()
to rename a worksheet in a Workbook
## Create a new workbook
wb <- createWorkbook()
## Add some worksheets
addWorksheet(wb, "Worksheet Name")
addWorksheet(wb, "This is worksheet 2")
addWorksheet(wb, "The third worksheet")
## Return names of sheets, can not be used for assignment.
names(wb)
# openXL(wb)
names(wb) <- c("A", "B", "C")
names(wb)
# openXL(wb)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.