You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is somewhere between a bug and a feature request (probably closer to a feature request).
When trying to use import_list() on a URL with a .xls file, it fails due to "path does not exist", but it works for import(). I think that it would be preferable for import() and import_list() to always work for URLs. But, maybe this is an issue that should be brought up with the underlying package which is doing the loading.
url<-"https://evs.nci.nih.gov/ftp1/CDISC/SDTM/SDTM%20Terminology.xls"d_raw<-rio::import(url)
#> New names:#> * `` -> ...2d_raw<-rio::import_list(url)
#> Error: `path` does not exist: 'https://evs.nci.nih.gov/ftp1/CDISC/SDTM/SDTM%20Terminology.xls'
This is somewhere between a bug and a feature request (probably closer to a feature request).
When trying to use
import_list()
on a URL with a .xls file, it fails due to "path does not exist", but it works forimport()
. I think that it would be preferable forimport()
andimport_list()
to always work for URLs. But, maybe this is an issue that should be brought up with the underlying package which is doing the loading.Created on 2022-02-25 by the reprex package (v2.0.1)
Session info
The text was updated successfully, but these errors were encountered: