TimStats commited on
Commit
0dedb4e
·
verified ·
1 Parent(s): 00e1458

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(date >= input$dates[1] & date <= input$dates[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(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))) %>%