Learn R Programming

COVID19 (version 2.0.3)

read.excel: Data Input (excel)

Description

Read xls and xlsx files.

Usage

read.excel(path, cache = FALSE, sheet = NA, ...)

Arguments

path

Path to the xls/xlsx file.

cache

logical. Memory caching? Default FALSE.

sheet

Sheet to read. Either a string (the name of a sheet), or an integer (the position of the sheet). Ignored if the sheet is specified via range. If neither argument specifies the sheet, defaults to all sheets.

...

arguments passed to read_excel

Value

list of data.frame

Examples

Run this code
# NOT RUN {
url <- "https://epistat.sciensano.be/Data/COVID19BE.xlsx"
x   <- read.excel(url, cache = TRUE)  

# }
# NOT RUN {
# }

Run the code above in your browser using DataLab