ui <- fluidPage(
titlePanel(”下拉選單範例“),
sidebarLayout(
sidebarPanel(
# 建立下拉選單
selectInput(”data_choice“, ”選擇數據集:“,
choices = c(”mtcars“, ”iris“, ”ToothGrowth“))
),
mainPanel(
tableOutput(”data_table“)
)
)
)
server <- function(input, output) {
output$data_table <- renderTable({
# 根據選擇的數據集顯示對應的表格
if (input$data_choice == ”mtcars“)"" {
head(mtcars)
} else if (input$data_choice == ”iris“)"" {
head(iris)
} else if (input$data_choice == ”ToothGrowth“)"" {
head(ToothGrowth)
}
})
}
shinyApp(ui = ui, server = server)
請問以上是否有哪錯誤 目前無法運行...
不要給我分數,如果有解決問題的話,給Bing吧!
library(shiny)
ui <- fluidPage(
titlePanel("下拉選單範例"),
sidebarLayout(
sidebarPanel(
# 建立下拉選單
selectInput("select", "請選擇一個數字:", choices = c(1, 2, 3))
),
mainPanel(
# 顯示所選擇的數字
textOutput("text")
)
)
)
server <- function(input, output) {
output$text <- renderText({
paste("您所選擇的數字是:", input$select)
})
}
shinyApp(ui = ui, server = server)