繁体   English   中英

在Shiny App中使用ends_with在R中动态添加选择列

[英]Add Select columns dynamically in R with ends_with in Shiny App

使用stackoverflow,我创建了一个闪亮的应用程序,该应用程序上传一个csv文件,然后显示一个数据表。

动态选择列之后,其中某些列以“ _down ”结尾。

我需要缩短数据帧的帮助(如下面的代码所示),并按ID列(如果有)删除重复项。

    # install.packages("shiny")
    # install.packages("DT")
    # install.packages("shinycssloaders")
    library(DT)
    library(shiny)
    library(shinycssloaders)

UI代码

    ##Creating the UI as a fluidPage,
    ##fluidPage allows scaling components of the browser in realtime to fill all available broswer width
    ##This is standard
    ui <- fluidPage(

      # Title of app
      titlePanel("Upload file to table"),


        # Main panel for displaying outputs
        mainPanel(

          #fileInput with acceptance of text/csv and more
          fileInput('file', 'Choose file to upload',
                    accept = c(
                      'text/csv',
                      'text/comma-separated-values',
                      'text/tab-separated-values',
                      'text/plain',
                      '.csv',
                      '.tsv',
                      '.html'
                    )),


          # Output: datatable
          DT::dataTableOutput("data_as_table")%>%withSpinner(),

          #Download button
          downloadButton("downloadData", "Download")

        )
    )

服务器代码

创建服务器

    server <- function(input, output) {


      #Data is a reactive element meaning it will update when the reactive input inside it change
      #Data will update when input$file changes
      #input$file is the uploaded file (se fileInput in ui)
      data <-reactive({

        #Store input$file as inFile 
        inFile <- input$file

        #if its empty return nothing
        if (is.null(inFile))
          return(NULL)

        #read in the file as a csv, with headers, comma seperated
        dd = read.csv(inFile$datapath, header = T,
                 sep = ",")
        dd  = as.data.frame(dd)

        #Shortening dataframe 
        #dd= dd[apply(dd[, endsWith(colnames(dd), "_down")], 1, function(x) any(x == "TRUE")), ]


        #Remove duplicates by ID column, and show unique
        #xxx
        return(dd)
      })



    #Make the output data_as_table a datatable containing the reactive element data
     output$data_as_table<-DT::renderDataTable({
       data()
     })


     # Downloadable csv of reactive data() object
     output$downloadData <- downloadHandler(
       filename = function() {
         paste("Download", Sys.date(), ".csv", sep = "")
       },
       content = function(file) {
         write.csv(data(), file, row.names = FALSE)
       }
     )
    }

    #Launch shiny app
    shinyApp(ui = ui, server = server)

您可以使用dplyr::distinct删除重复项。 它只会保留ID的第一个实例,并删除其他实例。 在您的情况下,在data反应式的return(dd)之前添加它-

if("ID" %in% names(dd)) {
    dd <- dplyr::distinct(dd, ID, .keep_all = T)
}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM