object of type ‘closure’ is not subsettable in R Shiny
问题 I would like to add buttons to my DT (one for each row - in first column). When I click on the button it should remove the row from DT. I wrote a code: library(shiny) library(DT) shinyApp( ui <- fluidPage(DT::dataTableOutput("data")), 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, ..