How to add date filter to graph?
I am writing an app that allows the user to select a date range, and the graph will change accordingly. However, I am having issues with my filter() function. If I hardcode the dates i.e. y >= ‘6/11/2024’ & y <= ‘6/13/2024’, the app runs fine. However, when I attempt to make the filter reactive with input$data_range, the graph shows up blank. I tried wrapping my data frame column and the input in as.Date, but my graph still shows up as blank.