首页 > 解决方案 > 使用 selectinput 从数据框中提取列值

问题描述

例如,我有一个数据框 mtcars,我只想根据 selectinput 中的变量选项提取列值。

示例代码:

shinyApp(
  ui = fluidPage(
    varSelectInput("variable", "Variable:", mtcars),
    verbatimTextOutput('data')
  ),
  server = function(input, output) {
   
    output$data <- renderText({
      mtcars$input$variable
    })
   
  }
)

例如:mtcars$mpg

在此处输入图像描述

I want only to extract the mpg vector values: 21.0 21.0 22.8 21.4 18.7 18.1 14.3 24.4 22.8 19.2 17.8 16.4 17.3 15.2 10.4 10.4 14.7 32.4 30.4 33.9 21.5 15.5 15.2 13.3 19.2 27.3 26.0 30.4 15.8 19.7 15.0 21.4

标签: rshinyshinyapps

解决方案


试试这个

output$data <- renderText({
      paste(mtcars[[as.name(input$variable)]])
})

推荐阅读