I am using R with readxl package. I am trying to import an Excel file with the following command:
library(readxl) city_codes <- read_excel("./data/file.xlsx", sheet = "city_codes")
He says that it is a zip file and cannot be opened:
Error in sheets_fun(path) : Evaluation error: zip file './data/file.xlsx' cannot be opened.
Any ideas?
r readxl
canpoint
source share