将数据帧转换为selectInput(Shiny)中的选择列表

问题描述 投票:3回答:3

我有一个与下面示例相对应的数据框:

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下拉菜单显示所有可用选项:

我只对列出主题并传递相应的数值感兴趣。

r list dataframe shiny
3个回答
6
投票

使用函数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))

1
投票

对于choices参数,您可以使用doc中的命名列表:

如果列出了列表的元素,则会向用户显示该名称而不是值

要创建命名列表,您可以尝试:

your_choices <- as.list(df$id)
names(your_choices) <- df$subject

在应用程序中:

selectInput("subject", "Subject",
                choices = your_choices )

0
投票

使用setNames,例如:

selectizeInput('x3', 'X3', choices = setNames(state.abb, state.name))

就像在这个例子中http://shiny.rstudio.com/gallery/option-groups-for-selectize-input.html

© www.soinside.com 2019 - 2024. All rights reserved.