2016-09-15 15 views

回答

0

下面的代碼是我的工作。如果您在從數據集中刪除列之前應用過濾器,它應該可以工作。

output$hot <- renderRHandsontable({ 
    hot <- df 
    if(input$filter > 1) { 
    hot <- hot[[hot$A %in% input$filter,] 
    } 
    hot<-hot[!A] 
    rhandsontable(DF1) 
}) 
相關問題