View source: R/read and write excel.R
read_sheets | R Documentation |
read all the sheets from a Excel file
read_sheets(
dataset_path,
remove_all_NA_col = T,
data_type_fix = T,
na_strings = c("", "NA", "N/A", " "),
sheets = "all",
character_cols = NULL
)
dataset_path |
location of the dataset |
remove_all_NA_col |
A logical parameter. TRUE (default) with remove columns with all NAs |
data_type_fix |
will fix the data type. |
sheets |
Sheet to read. Must be the name of the sheet.Default is all, which will read all the available sheets in the excel file. |
character_cols |
name of the columns which must read as characters even if its a non character column. |
na.string |
only valid when data_type_fix is true |
All of the sheet as individual dataframe
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.