给定的 R 闪亮脚本在下面有一个 selectInput 和信息框,我只想在 ui 的信息框中的 selectInput 中显示所选值。请帮助我解决方案,如果可能,请避免在服务器中编写任何脚本,因为我有进一步的依赖关系。如果这可以在 UI 中完成,那就太好了,谢谢。
## app.R ##
library(shiny)
library(shinydashboard)
ui <- dashboardPage(
dashboardHeader(),
dashboardSidebar(),
dashboardBody(
box(title = "Data", status = "primary", solidHeader = T, width = 12,
fluidPage(
fluidRow(
column(2,offset = 0, style='padding:1px;',
selectInput("select the
input","select1",unique(iris$Species)))
))),
infoBox("Median Throughput Time", iris$Species)))
server <- function(input, output) { }
shinyApp(ui, server)