我正在开发一个 Shiny 应用程序,让用户选择列、过滤行并下载结果。我正在使用数据表来执行此操作。数据文件中等大小,使用客户端处理会导致相当大的减速;但是,使用服务器端处理我无法访问过滤后的数据集。
换句话说,当 renderDataTable() 中的 server=FALSE 时,input$foo_rows_all 返回所有过滤的行,但当 server=TRUE 时 input$foo_rows_all 只返回当前显示页面上的行,而不是所有行。当 server = TRUE 时,如何访问所有过滤的行。
显示问题的示例:
library(shiny)
library(dplyr)
library(DT)
dat<-data.frame(letters=c(rep("A",15),rep("B",5),rep("C",5)))
server<-shinyServer(function(input, output) {
#Returns filtered data
output$dat_false <- renderDataTable(dat,filter = "top",server = FALSE)
#Returns just the currently visible values
output$dat_true <- renderDataTable(dat,filter = "top",server = TRUE)
#This code modified from: https://yihui.shinyapps.io/DT-info/
output$x5 = renderPrint({
cat('\n\nAll rows with server = TRUE:\n\n')
cat(input$dat_true_rows_all, sep = ', ')
cat('\n\nAll rows with server = FALSE:\n\n')
cat(input$dat_false_rows_all, sep = ', ')
})
})
ui<-shinyUI(
fluidPage(
sidebarLayout(
sidebarPanel(verbatimTextOutput('x5')),
mainPanel(dataTableOutput("dat_true"),
dataTableOutput("dat_false"))
)
)
)
shinyApp(ui,server)