我有一个与下面示例相对应的数据框:
df = data.frame(subject=c("Subject A", "Subject B", "Subject C", "Subject D"),id=c(1:4))
我想将这个数据框转换为一个列表对象,可以方便地在selectInput
中实现:
selectInput("subject", "Subject",
choices = #my_new_list )
我希望最终用户能够看到选择中的主题列表以及selectInput
返回相应的数值(id
)。
如果我试图通过以下方式获取我的列表:
df <- data.frame(lapply(df, as.character),
stringsAsFactors = FALSE)
df <- as.list(df)
selectInput
下拉菜单显示所有可用选项:
我只对列出主题并传递相应的数值感兴趣。
使用函数split
:
my_new_list <- split(df$id, df$subject)
my_new_list
#$`Subject A`
#[1] 1
#$`Subject B`
#[1] 2
#$`Subject C`
#[1] 3
#$`Subject D`
#[1] 4
与功能with
一起:
my_new_list <- with(df, split(id, subject))
对于choices
参数,您可以使用doc中的命名列表:
如果列出了列表的元素,则会向用户显示该名称而不是值
要创建命名列表,您可以尝试:
your_choices <- as.list(df$id)
names(your_choices) <- df$subject
在应用程序中:
selectInput("subject", "Subject",
choices = your_choices )
使用setNames
,例如:
selectizeInput('x3', 'X3', choices = setNames(state.abb, state.name))
就像在这个例子中http://shiny.rstudio.com/gallery/option-groups-for-selectize-input.html