No puedo cargar archivo .xlsx

setwd("C:/Users/Madelyn Read/Desktop/R/3.- GGPlot 2")
enoe<-read_xlsx(mu_enoe.xlsx)
Error in is_string(path) : object 'mu_enoe.xlsx' not found

Me esta dando error de la ruta, pero cuando lo intento cambiar de carpeta me dice que esta en uso. Por fis alguien que me oriente que soy nueva en esto. Gracias de ante mano

The file name needs to be in quotation marks. (El nombre del archivo tiene que estar entre comillas.)

enoe<-read_xlsx("mu_enoe.xlsx")

Hi @Mady , for get the correct path of file put this file.choose() and select the file. This show the exactly path, because maybe you have a wrong setwd.

file.choose() # select the file

# copy and paste in
enoe<-read_xlsx('THE_PATH_THAT_CONSOLE_SHOW_WHEN_YOU_USE_file.choose' ) # punt betwen " ".

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.