I have a drop down menu which is a selectizeInput
- using which I need to subset my dataframe for analysis further.
Consider the following,
d - dataframe (has a column named 'test')
menu - the selectizeInput
drop down
d[d$test %in% input$menu, ]
This doesn't do what I actually need to. Any thoughts?