5
votes

I am using R shiny to develop a web application. Now I want to do multiple selection(not just one) from multiple choices. I tried checkboxGroupInput, but it will give a long list. What function can create things like this? Thanks!

enter image description here

1

1 Answers

2
votes

You can use selectInput with the argument multiple = TRUE, as can be seen in the documentation.