javascript - 在 R Shiny 中过滤 rhandsontable 中的行

标签 javascript r filter shiny rhandsontable

我想在 Shiny 应用程序中显示和编辑 rhandsontable。由于我的数据框相当大,我希望用户能够过滤特定行而不是显示整个 1000 行(参见下面的示例)。我可以根据 input$row 创建一个子集 hot 的 react 值,但是只有 DF[input$row,] 被分配给 input$hot,因此,下次我获取 input$hot 的值时,它会返回一个只有一行的数据框。

library(shiny)
library(rhandsontable)

ui <- shinyUI(fluidPage(
  numericInput("rows","row to filter",value = 1),
  rHandsontableOutput("hot")
))

server <- shinyServer(function(input, output, session) {

  # render handsontable output
  output$hot <- renderRHandsontable({
    if (!is.null(input$hot)) {
      DF <- hot_to_r(input$hot)
    } else {
      set.seed(42)
      DF <- data.frame(a=1:1000, b= rnorm(1000))
    }
    rhandsontable(DF) 
  })

})

runApp(list(ui=ui, server=server))

是否有一个我可以应用于 rhandsontable() 的过滤参数,它允许我渲染我的数据框的过滤版本而无需实际对其进行子集化,以便链接的 input$ hot 不会受到影响(当然,用户所做的任何编辑除外)?

我希望用户在文本输入框 row 中写入要过滤的行,然后相应地过滤要过滤的表。 nrow(hot_to_r(input$hot)) == 1000 必须继续为 TRUE:

render

最佳答案

你不能那样做,使用过滤器,但你可以缓存一行,并在事情发生变化时将数据放回原处。

这是在 Shiny 中实现的一种方法。比我想象的更难做到正确,我尝试了很多其他方法都行不通,所以这对我来说也是一种学习经历。

library(shiny)
library(rhandsontable)

set.seed(1234)

# Data and a couple utility functions
nrow <- 1000
DF <- data.frame(a = 1:nrow,b = abs(rnorm(nrow)))
lastrow <- 1

getrowfromDF <- function(idx) {
  return(DF[idx,])
}

putrowintoDF <- function(rowdf,idx) {
  for (ic in 1:ncol(DF)) {
    DF[idx,ic] <<- rowdf[1,ic]
  }
}

u <- shinyUI(fluidPage(
  numericInput("row","row to filter",value = lastrow,min = 1,max = nrow(DF)),
  verbatimTextOutput("rowstat"),
  rHandsontableOutput("hot")
))

s <- shinyServer(function(input,output,session) {

  # reactive row status
  rs <- reactiveValues()
  rs$lstrow <- rs$currow <- 1

  # record changes from user editing here
  observeEvent(input$hot, {
    if (!is.null(input$hot)) {
      ndf <- data.frame(input$hot$data)  # convert from list
      #putrowintoDF(ndf,rs$currow)   # original - has inconsistency issue when 
                                     # you change rows without closing edit
                                     # with enter key in rhandsontable grid input$hot
      putrowintoDF(ndf,ndf[1,1])     # new, consistent, but relies on editable data for state
    }
  })

  # slide the row to the new position here
  observeEvent(input$row, {
    rs$lstrow <<- rs$currow
    rs$currow <<- input$row
  })


  # render handsontable output
  output$hot <- renderRHandsontable({
    ndf <- getrowfromDF(rs$currow)
    rhandsontable(ndf)
  })

  # just for debug
  output$rowstat <- renderPrint({ sprintf("rowstat: cur:%d last:%d",rs$currow,rs$lstrow) })

})
shinyApp(ui = u,server = s)

我希望没有全局变量分配和纯 react 而不是观察的解决方案,但我认为这是不可能的。

更新

我提出的原件有一个我错过的一致性错误,因为我使用的是没有数字控制增量箭头的 Shiny 版本。当您使用数字控件 input$row 更改行时,没有使用 enter 键或更改焦点关闭 rhandsontable input$hot 中的编辑,并导致数据框 DF 中要更新的错误行。

修复是使用 input$hot 中的数据来维持此状态,但这可能很危险,因为用户可以对其进行编辑。或者这可能是一个功能...

无论如何,这是一个屏幕截图,但您真的必须使用这些值才能看到它有效且没有错误:

enter image description here

关于javascript - 在 R Shiny 中过滤 rhandsontable 中的行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41161822/

相关文章:

javascript - 使用函数作为原型(prototype)

javascript - 如何通过ajax执行PHP函数?

r - 在 R 中导出 300dpi tiff 的绘图

r - 如何在 R 中批量反向地理编码?

java - 过滤器和 for 循环哪个是有效且更好的方法

javascript - 我正在尝试从函数内提取 doc.data 数组并在范围之外使用它

javascript - 使用 JavaScript + React,如何让字符串内联求值?

r - 我如何使用usethis来增加我的R包在谷歌云平台上的版本?

elasticsearch - ElasticSearch对聚合进行过滤,而不会影响聚合计数

filter - Logstash 创建嵌套字段