cloud_read_excel {cloudfs} | R Documentation |
Read excel file as a list of dataframes
Description
Uses readxl::read_excel under the hood, reads all sheets and returns them as a named list of dataframes.
Usage
cloud_read_excel(path)
Arguments
path |
Path to the xlsx/xls file. |
Value
A named list of dataframes, where each dataframe corresponds to a sheet in the Excel file. The names of the list elements are derived from the sheet names.
Examples
datasets <- readxl::readxl_example("datasets.xlsx")
cloud_read_excel(datasets)
[Package cloudfs version 0.1.3 Index]