View source: R/class-workbook-wrappers.R
wb_remove_tables | R Documentation |
Remove Excel tables in a workbook using its name.
wb_remove_tables(wb, sheet = current_sheet(), table, remove_data = TRUE)
wb |
A Workbook object |
sheet |
A name or index of a worksheet |
table |
Name of table to remove. Use |
remove_data |
Default |
The wbWorkbook
, invisibly
wb <- wb_workbook()
wb$add_worksheet(sheet = "Sheet 1")
wb$add_worksheet(sheet = "Sheet 2")
wb$add_data_table(sheet = "Sheet 1", x = iris, table_name = "iris")
wb$add_data_table(sheet = 1, x = mtcars, table_name = "mtcars", start_col = 10)
## delete worksheet removes table objects
wb <- wb_remove_worksheet(wb, sheet = 1)
wb$add_data_table(sheet = 1, x = iris, table_name = "iris")
wb$add_data_table(sheet = 1, x = mtcars, table_name = "mtcars", start_col = 10)
## wb_remove_tables() deletes table object and all data
wb_get_tables(wb, sheet = 1)
wb$remove_tables(sheet = 1, table = "iris")
wb$add_data_table(sheet = 1, x = iris, table_name = "iris")
wb_get_tables(wb, sheet = 1)
wb$remove_tables(sheet = 1, table = "iris")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.