有没有办法在传递数据帧时隐藏rhandsontable中的列

时间:2016-09-15 16:06:52

标签: rhandsontable

我有一个数据框,我正在传递给rhandsontable。假设数据框有列(A和B)。在显示中我想根据A列中的值格式化B列,但我不想显示A列。有没有办法做到这一点。我在rhandsontable中看不到列属性。

感谢

1 个答案:

答案 0 :(得分:0)

以下代码对我有用。如果在从数据集中删除列之前应用过滤器,则应该可以使用。

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