简体   繁体   中英

removing data from DT in app and buttons in DT, shiny R

I have DT where I added checkboxes as a first column. Their idea is to give the user the option of removing selected rows and placing them in a file. After pressing the button cold "delete", the data is sent to the file, but I do not know how to update DT, to get data without those deleted rows. Code:

library(shiny)
library(DT)
library(dplyr)


shinyApp(
  ui <- fluidPage(DT::dataTableOutput("ruless"),
                  fluidRow(column(4, offset = 1, actionButton("delete", "Delete", width = 200)))),

  server <- function(input, output) {

    values <- reactiveValues(data = NULL)

    values$data <- as.data.frame(
      cbind(c("a", "d", "b", "c", "e", "f"),
            c(1463, 159, 54, 52, 52, 220),
            c(0.7315, 0.0795, 0.027, 0.026, 0.026, 0.11)
      )
    )

    shinyInput = function(FUN, len, id, ...) {
      #validate(need(character(len)>0,message=paste("")))
      inputs = character(len)
      for (i in seq_len(len)) {
        inputs[i] = as.character(FUN(paste0(id, i), label = NULL, ...))
      }
      inputs
    }

    output$ruless <- DT::renderDataTable({
      datatable(
        data.frame(delete=shinyInput(checkboxInput,nrow(values$data),"cbox_"), values$data),
        selection="multiple",
        escape = FALSE,
        filter = list(position = 'top', clear = FALSE),
        extensions = list("ColReorder" = NULL, "Buttons" = NULL),
        options = list(
          dom = 'BRrltpi',
          autoWidth=TRUE,
          lengthMenu = list(c(10, 50, -1), c('10', '50', 'All')),
          ColReorder = TRUE,
          preDrawCallback = JS('function() { Shiny.unbindAll(this.api().table().node()); }'),
          drawCallback = JS('function() { Shiny.bindAll(this.api().table().node()); } '),
          buttons = list(
            'copy',
            'print',
            list(
              extend = 'collection',
              buttons = c('csv', 'excel', 'pdf'),
              text = 'Download',
              selected = TRUE
            )
          )
        )
      )
    })


    shinyValue = function(id, len) { 
      unlist(lapply(seq_len(len), function(i) {
        value = input[[paste0(id, i)]] 
        if (is.null(value)) NA else value 
      })) 
    } 


    observeEvent(input$delete, {
      checkbox_rules <- data.frame(selected=shinyValue("cbox_",nrow(values$data)))
      marked_rules <- as.data.frame(values$data[(which(checkbox_rules == TRUE)),])
      if (file.exists("delete_file.csv")){
        delete_file <- as.data.frame(read_csv2("delete_file.csv", col_names  = TRUE))
        delete_file <- as.data.frame(rbind(delete_file, marked_rules))
        delete_file <- delete_file[!duplicated(delete_file), ]
        write.csv2(delete_file, file = "delete_file.csv", sep=";", row.names = FALSE)
      }
      else{
        write.csv2(marked_rules, file = "delete_file.csv", sep=";", row.names = FALSE)
      }
    })

  }
)

I would like also to replace delete button and rename rest of buttons above DT. I am thinking about something like that:

在此处输入图片说明

I it possible to do? Thank in advance! Is it possible?

You can update the data.frame in the observer like this

      values$data <- values$data[!checkbox_rules,]

At the end it should look something like this

observeEvent(input$delete, {
      checkbox_rules <- data.frame(selected=shinyValue("cbox_",nrow(values$data)))
      marked_rules <- as.data.frame(values$data[(which(checkbox_rules == TRUE)),])
      values$data <- values$data[!checkbox_rules,]
      if (file.exists("delete_file.csv")){
        delete_file <- as.data.frame(read_csv2("delete_file.csv", col_names  = TRUE))
        delete_file <- as.data.frame(rbind(delete_file, marked_rules))
        delete_file <- delete_file[!duplicated(delete_file), ]
        write.csv2(delete_file, file = "delete_file.csv", sep=";", row.names = FALSE)
      }
      else{
        write.csv2(marked_rules, file = "delete_file.csv", sep=";", row.names = FALSE)
      }
    })

hope this helps!

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

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