I believe there is a way when debugging a shiny app to see what the data contains when a user filters underlying data and then that filtered data is used for some other operation in the app.
In this case, a reactive--filtered()
--is being created by taking underlying data and filtering it based on user inputs. filtered()
is then used as the underlying data for a plot and tooltip. I'd like to check and see what the content of filtered()
is after user input and before it is used for plotting, etc.
Anyone know or have a link? Thanks!