从 selectInput 更新数据

问题描述 投票:0回答:1

我在获取 selectizeInput 的输出以更新上传的 csv 数据时遇到问题。 有问题的具体代码块是

observeEvent(input$Go, {
    tmp <- values$df_data
    output$Grp = renderUI({

      lvls <- tmp %>%
        pull(Group) %>%
        levels

      selectizeInput('group', 'Groups', choices = lvls, selected = lvls[1], multiple = FALSE)


    })



    tmp1 <- tmp %>% 
      filter(Group == "A") # need to change here by updating the value from input$Grp
    values$df_data <- tmp1


  })

“组”列使用硬编码值进行过滤。 我的目的是通过获取“Grp”的值来使其动态。 下图显示了问题

在此输入图片描述

完整代码如下

library(shinydashboard)
 library(shiny)
 library(dplyr)
 library(tidyr) 

ui = dashboardPage(
   dashboardHeader(),
   dashboardSidebar( 
     width = 200,
     sidebarMenu(
       menuItem("File Upload", icon = shiny::icon("table")),

       fileInput('datafile', 'Choose CSV file',
                 accept=c('text/csv', 'text/comma-separated-values,text/plain')),
       uiOutput('Grp'),
       actionButton("Go","Subset Data"))
   ),

   dashboardBody( fluidPage(


     titlePanel("Data Table"),


     sidebarLayout(
       tabPanel("tab",
                div( id ="Sidebar",sidebarPanel(

                ))), 


       mainPanel(
                 DT::dataTableOutput("tableOut")


       )
     )
   )
   )
 )

server = function(input, output, session) {




  values <- reactiveValues(df_data = NULL)

  observeEvent(input$datafile, {
    values$df_data <- read.csv(input$datafile$datapath)


  })

  observeEvent(input$Go, {
    tmp <- values$df_data
    output$Grp = renderUI({

      lvls <- tmp %>%
        pull(Group) %>%
        levels

      selectizeInput('group', 'Groups', choices = lvls, selected = lvls[1], multiple = FALSE)


    })

    tmp1 <- tmp %>% 
      filter(Group == "A") # need to change here by updating the value from input$Grp
    values$df_data <- tmp1


  })

  output$tableOut <- DT::renderDataTable({

    DT::datatable(values$df_data)



  })


}

shinyApp(ui = ui, server = server)

我正在上传 .csv 文件。 以下数据与我的数据类似。

set.seed(12345)
data <- data.frame(DATE = rep(seq(as.Date("2014-01-01"), length.out = 200,
by = "week"), each = 4), Group = rep(c("A", "B", "C", "D"), each = 200),
       ValueColumn = rnorm(800))
r shiny
1个回答
0
投票

这个问题似乎并不孤立于

selectizeInput
,而是与您试图让 Shiny 应用程序“查看”的任何新数据有关。这里有一些可以尝试的事情:

  1. 删除闪亮服务器根目录中的所有
    _cache
    目录,然后尝试再次加载。如果没啥区别的话
  2. touch
    .csv
    文件(或者在 Windows 上进行编辑,以获得新的时间戳),然后尝试再次加载。如果没啥区别的话
  3. 使用
    sudo systemctl restart shiny-server
    重新启动闪亮服务器,其中最后一个参数是闪亮服务器的名称(默认为
    shiny-server

最后一个解决方案对我来说是最可靠的——它是本文档中的#2(Shiny应用程序不反映更新RData文件中的更改)——从命令行重新启动shiny服务器。这工作可靠且常规。该解决方案中的其他想法在我的机器上不起作用,因此必须取决于您的服务器或客户端规格。

对我有用的第二件事是使用

reactiveTimer
https://shiny.rstudio.com/reference/shiny/0.14/reactiveTimer.html)。

© www.soinside.com 2019 - 2024. All rights reserved.