We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
pub_covid_hosp_state_timeseries
issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
library(epidatr) covid_hosp_timeseries_selection <- pub_covid_hosp_state_timeseries("ak", as.Date("2022-12-17")) covid_hosp_timeseries_selection$issue #> [1] NA # VS: response <- pub_covid_hosp_state_timeseries("ak", as.Date("2022-12-17"), fetch_args = fetch_args_list(dry_run = TRUE)) |> epidatr:::request_url() |> httr::GET() httr::content(response)$epidata[[1]]$issue #> [1] 20231027
Created on 2023-11-01 with reprex v2.0.2
The text was updated successfully, but these errors were encountered:
Workaround: disable_date_parsing = TRUE in fetch_args_list, then convert the impacted columns with e.g.
disable_date_parsing = TRUE
fetch_args_list
date = as.Date(as.character(date), format="%Y%m%d"), issue = as.Date(as.character(issue), format = "%Y%m%d"),
Sorry, something went wrong.
nmdefries
Successfully merging a pull request may close this issue.
Created on 2023-11-01 with reprex v2.0.2
The text was updated successfully, but these errors were encountered: