Skip to content

Commit

Permalink
Fix column name
Browse files Browse the repository at this point in the history
  • Loading branch information
dylanhmorris committed Dec 13, 2024
1 parent edc0cb8 commit 396a4e0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions R/plot_quantiles.R
Original file line number Diff line number Diff line change
Expand Up @@ -313,10 +313,10 @@ plot_hubverse_quantiles <- function(forecast_data_path,
forecast_data <- forecast_data |>
dplyr::filter(
nullable_comparison(
.data$date, ">=", as.Date(!!start_date)
.data$target_end_date, ">=", as.Date(!!start_date)
),
nullable_comparison(
.data$date, "<=", as.Date(!!end_date)
.data$target_end_date, "<=", as.Date(!!end_date)
)
)

Expand Down

0 comments on commit 396a4e0

Please sign in to comment.