R Shiny:基于反应数据框的updateSelectInput
R Shiny: updateSelectInput based on reactive dataframe
我有一个闪亮的应用程序,用户可以根据他想看的文章过滤我数据集中的文章列。这些文章然后显示在 table 中。这些文章在点击时作为带有自定义功能的动作按钮做出反应。
我希望每当用户点击某篇文章时,这篇文章在selectInput
中被选中。不过我不知道要将哪个值传递给 updateSelectInput
.
的 selected
属性
我卡的地方打了三个问号。通过删除三个问号,代码是 executable。
任何帮助表示赞赏
library(shiny)
library(tidyverse)
library(kableExtra)
library(formattable)
df = tibble(article=c("one", "two", "three", "four", "five", "six"),
group=c("a", "a", "a", "b", "b", "b"),
sales=c(12,13,14,43,50,45))
ui = fluidPage(
sidebarPanel(
radioButtons(inputId = "select_a", label = "Choose a group", choices = unique(df$group), selected = "a"),
htmlOutput(outputId = "table")),
sidebarPanel(
selectInput(inputId = "select_b", label = "Choose an article", choices = df$article, selected = "one")
)
)
server = function(input, output, session){
shinyInput <- function(FUN, len, id, labels, ...) {
inputs <- character(len)
for (i in seq_len(len)) {
inputs[i] <- as.character(FUN(paste0(id, i), label = labels[i], ...))
}
inputs
}
df_reactive = reactive({
df %>% filter(group == input$select_a) %>%
mutate(article = shinyInput(actionButton, n(), 'button_', labels = article, onclick = 'Shiny.onInputChange(\"select_button\", this.id)'))
})
output$table = function(){
df_reactive() %>%
kable("html", escape = F, align = "c") %>%
kable_styling(bootstrap_options = c("striped", "condensed", "responsive"), full_width = F, position = "center") %>%
scroll_box(width = "100%", height = "auto")
}
observeEvent(input$select_button, {
updateSelectInput(session = session, inputId = "select_b", selected = ???)
})
}
shinyApp(ui = ui, server = server)
也许您可以使用 this.innerText
在此处检索文章:
mutate(article = shinyInput(actionButton, n(), 'button_', labels = article,
onclick = 'Shiny.onInputChange(\"select_button\", this.innerText)'))
然后 input$select_button
将包含文本字符串 select
:
updateSelectInput(session = session, inputId = "select_b", selected = input$select_button)
我有一个闪亮的应用程序,用户可以根据他想看的文章过滤我数据集中的文章列。这些文章然后显示在 table 中。这些文章在点击时作为带有自定义功能的动作按钮做出反应。
我希望每当用户点击某篇文章时,这篇文章在selectInput
中被选中。不过我不知道要将哪个值传递给 updateSelectInput
.
selected
属性
我卡的地方打了三个问号。通过删除三个问号,代码是 executable。 任何帮助表示赞赏
library(shiny)
library(tidyverse)
library(kableExtra)
library(formattable)
df = tibble(article=c("one", "two", "three", "four", "five", "six"),
group=c("a", "a", "a", "b", "b", "b"),
sales=c(12,13,14,43,50,45))
ui = fluidPage(
sidebarPanel(
radioButtons(inputId = "select_a", label = "Choose a group", choices = unique(df$group), selected = "a"),
htmlOutput(outputId = "table")),
sidebarPanel(
selectInput(inputId = "select_b", label = "Choose an article", choices = df$article, selected = "one")
)
)
server = function(input, output, session){
shinyInput <- function(FUN, len, id, labels, ...) {
inputs <- character(len)
for (i in seq_len(len)) {
inputs[i] <- as.character(FUN(paste0(id, i), label = labels[i], ...))
}
inputs
}
df_reactive = reactive({
df %>% filter(group == input$select_a) %>%
mutate(article = shinyInput(actionButton, n(), 'button_', labels = article, onclick = 'Shiny.onInputChange(\"select_button\", this.id)'))
})
output$table = function(){
df_reactive() %>%
kable("html", escape = F, align = "c") %>%
kable_styling(bootstrap_options = c("striped", "condensed", "responsive"), full_width = F, position = "center") %>%
scroll_box(width = "100%", height = "auto")
}
observeEvent(input$select_button, {
updateSelectInput(session = session, inputId = "select_b", selected = ???)
})
}
shinyApp(ui = ui, server = server)
也许您可以使用 this.innerText
在此处检索文章:
mutate(article = shinyInput(actionButton, n(), 'button_', labels = article,
onclick = 'Shiny.onInputChange(\"select_button\", this.innerText)'))
然后 input$select_button
将包含文本字符串 select
:
updateSelectInput(session = session, inputId = "select_b", selected = input$select_button)