I have a excel file(both xls and xlsx format) with multiple sheets. I have installed readxl package in R. I tried with the below code to import specific sheets, specific rows to columns but getting the error
install.packages("readxl")
library("readxl")
sam1 <- read_excel("File1","Sheet1",rowIndex = 6:8,colIndex = 1:13)
Error in read_excel("File1", "Sheet1", rowIndex = 6:8, : unused arguments (rowIndex = 6:8, colIndex = 1:13)
Can we solve this?