更改 R Shiny DT 内部数据的标签

问题描述 投票:0回答:1

在渲染数据表时如何更改“filtered_data”数据框的标签。渲染数据的代码如下。

output$table <- DT::renderDataTable(
  DT::datatable(filtered_data(), options = list(searching = TRUE,pageLength = 5,
                                                lengthMenu = c(5, 10, 15, 20), scrollX = T))
)

这看起来很简单,但我却做不到......

r shiny dt
1个回答
1
投票

您可能正在寻找自定义列名称 https://rstudio.github.io/DT/

datatable(filtered_data(), colnames = c('Here', 'Are', 'Some', 'New', 'Names'))
© www.soinside.com 2019 - 2024. All rights reserved.