Description Usage Arguments Details Value Examples
View source: R/read_xl_sheets.R
Import Excel workbook with multiple sheets
1 | read_xl_sheets(path, skip = 0)
|
path |
path to the xls/xlsx file. |
skip |
An integer: number of rows to be skiped in the beginning of each sheet; default = 0. |
This function imports multiple sheets contained in a .xls/.xlsx spreadsheet into distinct tibbles.
A series of tibbles corresponding to the different sheets contained in the Excel workbook.
1 2 3 4 5 6 | ## Not run:
path <- ".../myworkbook.xls"
read_xl_sheets(path)
read_xl_sheets(path, skip = 2)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.