Description Usage Arguments Value Examples
View source: R/read_excel_allsheets.R
Loads all of the sheets of the excel file filepath
, and returns them as
a list of tibbles or data.frames.
1 | read_excel_allsheets(filepath, cnames = TRUE, tibble = FALSE)
|
filepath |
Path to an excel file. |
cnames |
Logical value determining if column names should be included. Defaults to TRUE. |
tibble |
Logical value determining if the data should be loaded as tibbles or data.frames. Defaults to FALSE. |
List of tibbles or data.frames, each corresponding to one sheet.
1 2 3 | file = system.file('extdata', 'human_viruses.xls', package = 'myPackage')
read_excel_allsheets(file, cnames = TRUE, tibble = TRUE)
read_excel_allsheets(file)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.