From 3738d61e0ce2b3eef8049efed6e3dd294c828ea0 Mon Sep 17 00:00:00 2001 From: "Dylan H. Morris" Date: Thu, 23 Jan 2025 12:59:36 -0500 Subject: [PATCH] Fix two remaining issues in to_hubverse.R --- R/to_hubverse.R | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/R/to_hubverse.R b/R/to_hubverse.R index 4561450..85baba7 100644 --- a/R/to_hubverse.R +++ b/R/to_hubverse.R @@ -103,7 +103,7 @@ get_hubverse_table <- function(quantile_forecasts, epiyear = {{ epiyear_col }}, quantile_level = {{ quantile_level_col }} ) |> - dplyr::filter(!(location %in% !!excluded_locations)) + dplyr::filter(!(.data$location %in% !!excluded_locations)) output_table <- dplyr::inner_join(targets, quants, @@ -111,7 +111,7 @@ get_hubverse_table <- function(quantile_forecasts, ) |> dplyr::mutate( output_type = "quantile", - output_type_id = round(quantile_level, + output_type_id = round(.data$quantile_level, digits = 4 ) ) |>