
Read an .xlsx file.
read_xlsx.RdRead an .xlsx file with multiple sheets.
Details
If the .xlsx contains multiple sheets, the output is a list with all sheets as
data.frame entries in the list.
Examples
f <- tempfile(fileext = ".xlsx")
write_xlsx(list(cars = mtcars, flowers = iris), filePath = f)
allDat <- read_xlsx(f)