我有一个包含以下内容的ui.R文件:
h1("Hello")
我想根据文本字段和/或几个下拉选择菜单的输入更新此值。我怎么能这样做?
答案 0 :(得分:1)
以下是如何使用它的示例(最小应用程序):
library(shiny)
ui <- fluidPage(
selectInput('input1', 'Select a Number', choices = seq(1:5)),
uiOutput('output1')
)
server <- function(input, output) {
output$output1 <- renderUI({
h1(paste('You selected number: ', input$input1))
})
}
shinyApp(ui = ui, server = server)