getTables | R Documentation |
List Excel tables in a workbook
getTables(wb, sheet)
wb |
A workbook object |
sheet |
A name or index of a worksheet |
character vector of table names on the specified sheet
wb <- createWorkbook()
addWorksheet(wb, sheetName = "Sheet 1")
writeDataTable(wb, sheet = "Sheet 1", x = iris)
writeDataTable(wb, sheet = 1, x = mtcars, tableName = "mtcars", startCol = 10)
getTables(wb, sheet = "Sheet 1")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.