TimStats commited on
Commit
50412a9
·
verified ·
1 Parent(s): 0dedb4e

Update app.R

Browse files
Files changed (1) hide show
  1. app.R +1 -1
app.R CHANGED
@@ -400,7 +400,7 @@ server <- function(input, output, session) {
400
  if ("AAA" %in% input$level) AAA_processed,
401
  if ("FSL" %in% input$level) FSL_processed
402
  ) %>%
403
- filter(between(date, input$date_range[1], input$date_range[2]))
404
  # First group and calculate all stats
405
  grouped_data <- combined_data %>%
406
  group_by(across(all_of(input$group))) %>%
 
400
  if ("AAA" %in% input$level) AAA_processed,
401
  if ("FSL" %in% input$level) FSL_processed
402
  ) %>%
403
+ filter(between(as.Date(date), input$date_range[1], input$date_range[2]))
404
  # First group and calculate all stats
405
  grouped_data <- combined_data %>%
406
  group_by(across(all_of(input$group))) %>%