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
library(epidatr)
set_cache(days=28L, max_size=2e3)
pub_covidcast("hhs", "confirmed_7dav_incidence_prop", "state", "day", "*", "*", as_of=Sys.Date())
#> Error in charToDate(x): character string is not in a standard unambiguous format
This appears to be because of this comparison: epidata_call$params$as_of != "*" which appears to attempt date conversion on "*". Note we don't even support as_of="*" in the API, which would be extremely large (returning full snapshots for every version), only issues="*".