我一直在尝试掌握如何使DT :: dataTableProxy Using DT in Shiny在我的应用程序中工作,但是我无法通过返回所选列的操作。
在示例here之后,我尝试修改代码以打印描述性统计信息(使用pastecs
)。但是唯一呈现的是所选的文字列。
#modified UI, adding another verbatimTextOutput
ui =
...
verbatimTextOutput('foo2')
server =
...
output$foo2= renderPrint({
x<-input$foo_columns_selected
stat.desc(x)
})
我想做的就是获取所选列的值, 并运行功能
stat.desc
。在上面的示例中,它将是 在第2列(Sepal.Width)上运行,并呈现描述性统计信息。像这样:
展望未来,我想从多个selectInputs对呈现的DataTable执行stat.desc
。但是..一次一步。我想首先掌握如何获取实际值以执行功能。
所以,我想我想出了如何成功完成我所需要的东西。如果其他用户可以验证它是否正常运行,会爱:
更新的脚本:
require(DT)
library(dplyr)
library(tibble)
ui<-
fluidPage(
selectInput('obj','Choose Name:', choices = c('',my.data$Name), selectize = TRUE),
dateRangeInput('daterange',"Date range:",
start= min(my.data$Date),
end = max(my.data$Date)),
mainPanel(
dataTableOutput('filteredTable'),
dataTableOutput('filteredTable2'),
tableOutput('table')
)
)
server<-function(input,output, session){
filteredTable_data <- reactive({
my.data %>% rownames_to_column() %>% ##dplyr's awkward way to preserve rownames
filter(., Name == input$obj) %>%
filter(., between(Date ,input$daterange[1], input$daterange[2])) %>%
column_to_rownames()
})
##explicit assignment to output ID
DT::dataTableOutput("filteredTable")
output$filteredTable <- DT::renderDataTable({
datatable(
filteredTable_data(),
selection = list(mode = "multiple"),
caption = "Filtered Table (based on cyl)"
)
})
filteredTable_selected <- reactive({
ids <- input$filteredTable_rows_all
filteredTable_data()[sort(ids),] ##sort index to ensure orig df sorting
})
##anonymous
output$filteredTable2<-DT::renderDataTable({
x<-filteredTable_selected() %>% select(starts_with("Value"))
x<-as.data.frame(stat.desc(x))
datatable(
x)
})
}
shinyApp(ui, server)
结果:
以下答案对我们有很大帮助:Reading objects from shiny output object not allowed?和How do I get the data from the selected rows of a filtered datatable (DT)?