We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 07e2cbd commit e40f4e2Copy full SHA for e40f4e2
R/write_viz_target_data.R
@@ -75,7 +75,15 @@ write_viz_target_data <- function(
75
disease,
76
start_date = start_date,
77
end_date = end_date
78
- )
+ ) |>
79
+ # Remove data for reporting dates May 1, 2024 – October 31,
80
+ # 2024 due to the absence of a reporting mandate. Reporting
81
+ # rates during this period were much lower,
82
+ # and data not comparable to other time periods.
83
+ dplyr::filter(
84
+ !(.data$date >= lubridate::as_date("2024-05-01") &
85
+ .data$date <= lubridate::as_date("2024-10-31"))
86
+ )
87
} else {
88
NULL
89
}
0 commit comments