Skip to content
This repository has been archived by the owner on Nov 19, 2024. It is now read-only.

Commit

Permalink
cleanup console
Browse files Browse the repository at this point in the history
  • Loading branch information
reisner committed Oct 28, 2024
1 parent be336bf commit 51a4e9a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion dashboard_utils.R
Original file line number Diff line number Diff line change
Expand Up @@ -657,7 +657,8 @@ plot_timeseries_td <- function(plot_data, date_var, value_var, group_var, colour
smooth_degree = 2,
smooth_message = FALSE)
) %>%
dplyr::ungroup()
dplyr::ungroup() %>%
suppressWarnings()
} else {
show_trend = FALSE
}
Expand Down
2 changes: 1 addition & 1 deletion volume_timeline_module.R
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ volumeTimeline <- function(input, output, session,
p <- plot_data() %>%
plot_timeseries_td(
date_var = Date,
value_var = Count,
value_var = as.integer(Count),
group_var = display_name,
colour_var = display_name,
data_set_info = data_set_info(),
Expand Down

0 comments on commit 51a4e9a

Please sign in to comment.