我有一个数据框,我正在传递给rhandsontable。假设数据框有列(A和B)。在显示中我想根据A列中的值格式化B列,但我不想显示A列。有没有办法做到这一点。我在rhandsontable中看不到列属性。
感谢
答案 0 :(得分:0)
以下代码对我有用。如果在从数据集中删除列之前应用过滤器,则应该可以使用。
output$hot <- renderRHandsontable({
hot <- df
if(input$filter > 1) {
hot <- hot[[hot$A %in% input$filter,]
}
hot<-hot[!A]
rhandsontable(DF1)
})