在渲染数据表时如何更改“filtered_data”数据框的标签。渲染数据的代码如下。
output$table <- DT::renderDataTable(
DT::datatable(filtered_data(), options = list(searching = TRUE,pageLength = 5,
lengthMenu = c(5, 10, 15, 20), scrollX = T))
)
这看起来很简单,但我却做不到......
您可能正在寻找自定义列名称 https://rstudio.github.io/DT/
datatable(filtered_data(), colnames = c('Here', 'Are', 'Some', 'New', 'Names'))