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

Commit

Permalink
remove unneeded comment
Browse files Browse the repository at this point in the history
  • Loading branch information
reisner committed Oct 28, 2024
1 parent 02d41ab commit be336bf
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions volume_timeline_module.R
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,7 @@ volumeTimeline <- function(input, output, session,
mutate(Date = as.Date(paste0(Date, "-01"))) %>%
arrange(display_name)

# pad months:
# I can't find a way to do this in the ES query, bc the query first does the
# search (so returns a subset of docs), then does the aggregation.
# This means that for histogram aggregation, it never returns bins before the
# first, or after the last non-zero value
# Pad months:
all_months <- data_set_info() %>%
filter(index_name %in% unique(aggregations$month_counts.buckets$index)) %>%
group_by(display_name) %>%
Expand Down

0 comments on commit be336bf

Please sign in to comment.