Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何读取 Shiny 应用程序列表框中选择的多个值?
什么时候multiple=false然后我可以轻松使用input$nameofinput,但是返回什么以及如何访问选定的值multiple=TRUE?
multiple=false
input$nameofinput
multiple=TRUE
in 现在是一个向量,所以你可以使用whatever %in% input$nameofinput
whatever %in% input$nameofinput