允许在 r shiny 中的单选按钮中进行多项选择
Allow for several selection in radiobuttons in rshiny
我希望用户能够select给定列的一些因素。
为此,我创建了一个 radioButton 选项,它具有选项 selection 的因素,但是,我没有找到做两件事的方法:
- 同时允许多个 select离子。
- 开始显示所有因素 selected。
output$select_fact <- renderUI({
e <- unique(data_input()[[input$num_var_1]])
prettyRadioButtons("select_fact", "Choose factors", choices = e)
})
我很确定 multiple
选项不适用于 RadioButtons
。类似的替代方法是 checkboxGroupButtons
.
试试这个并查找 checkboxGroupButtons 文档以获得更好的配置。
checkboxGroupButtons(
inputId = "select_fact",
label = "Choose factors",
choices = e,
direction = "vertical")
我希望用户能够select给定列的一些因素。
为此,我创建了一个 radioButton 选项,它具有选项 selection 的因素,但是,我没有找到做两件事的方法:
- 同时允许多个 select离子。
- 开始显示所有因素 selected。
output$select_fact <- renderUI({
e <- unique(data_input()[[input$num_var_1]])
prettyRadioButtons("select_fact", "Choose factors", choices = e)
})
我很确定 multiple
选项不适用于 RadioButtons
。类似的替代方法是 checkboxGroupButtons
.
试试这个并查找 checkboxGroupButtons 文档以获得更好的配置。
checkboxGroupButtons(
inputId = "select_fact",
label = "Choose factors",
choices = e,
direction = "vertical")