Learn R Programming

cloudfs (version 0.1.3)

cloud_read_excel: 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)

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.

Arguments

path

Path to the xlsx/xls file.

Examples

Run this code
datasets <- readxl::readxl_example("datasets.xlsx")
cloud_read_excel(datasets)

Run the code above in your browser using DataLab