2
I have access through a link:
'http://**.**.**.**/matrix/pesquisa_2019-03-17.feather'
ou
a<-readRDS('http://**.**.**.**/matrix/pesquisa_2019-03-17.rds')
But I can’t access them
a<-read_feather('http://**.**.**.**/matrix/pesquisa_2019-03-17.feather')
Error in normalizePath(path.expand(path), winslash, mustWork) :
path[1]="http://**.**.**.**/matrix/pesquisa_2019-03-17.feather": A sintaxe do nome do arquivo, do nome do diretório ou do rótulo do volume está incorreta
a<-readRDS('http://**.**.**.**/matrix/pesquisa_2019-03-17.rds')
Error in gzfile(file, "rb") : cannot open the connection
In addition: Warning message:
In gzfile(file, "rb") :
cannot open compressed file 'http://**.**.**.**/matrix/pesquisa_2019-03-17.rds', probable reason 'Invalid argument'
I was able to download it with download.file()
, but I don’t want to take up hard drive space with him.
I also managed to do with read.csv2()
with the help of: https://stats.idre.ucla.edu/r/modules/reading-in-data-from-an-external-file/