如何在闪亮的 DataTables 表中格式化过滤器框?

How can I format the filter box in a shiny DataTables table?

提问人:divibisan 提问时间:11/17/2023 更新时间:11/17/2023 访问量:35

问:

在我闪亮的应用程序中,我想让我的用户从包中过滤交互式数据表。该选项创建了一个非常好的交互式过滤器工具,但值看起来很丑陋,因为它们没有四舍五入。我可以用来对表格中的数字进行四舍五入,但我无法弄清楚如何在筛选器窗口中设置数字的格式。DTfilterDT::formatRound

iris[,4:5] %>%
    mutate(x = runif(150)) %>%
    DT::datatable(filter='top') %>%
    DT::formatRound(3)

enter image description here

闪亮 的数据表 R-Markdown

评论


答: 暂无答案