View source: R/read_functions_excel.R
read_excel_table | R Documentation |
read_excel_table()
reads a table object from an Excel workbook.
read_excel_table(wb, table_name, table_df = NULL)
wb |
A workbook object |
table_name |
A character name of a table to read. |
table_df |
A dataframe of table references, built using
|
A tibble with the table.
Other Read Excel tables:
get_excel_tables()
example_file <- system.file("examples/excel_examples.xlsx", package = "costmisc")
wb <- openxlsx::loadWorkbook(example_file)
head(read_excel_table(wb, "tbl_mtcars"))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.