Skip to content
New 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

Quick fix of the hospital admissions post processing #99

Merged
merged 2 commits into from
Jul 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions _targets_eval_postprocessing.R
Original file line number Diff line number Diff line change
Expand Up @@ -179,14 +179,14 @@ combined_targets <- list(
name = convergence_df_ww,
command = get_convergence_df(
all_flags_ww,
default_scenario = "status_quo"
scenario = "status_quo"
) |>
dplyr::rename(any_flags_ww = any_flags)
),
tar_target(
name = convergence_df_hosp,
command = get_convergence_df(all_flags_hosp,
default_scenario = "no_wastewater"
scenario = "no_wastewater"
) |>
dplyr::rename(any_flags_hosp = any_flags)
),
Expand Down
2 changes: 1 addition & 1 deletion wweval/R/eval_post_process.R
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ eval_post_process_hosp <- function(config_index,
# Save forecasted quantiles locally as well as via
# targets caching just for backup
save_table(
data_to_save = hosp_model_quantiles,
data_to_save = full_hosp_model_quantiles,
type_of_output = "quantiles",
output_dir = output_dir,
scenario = "no_wastewater",
Expand Down
Loading