gpt4 book ai didi

R Shiny renderDataTable 显示两位小数并居中对齐所有数据

转载 作者:行者123 更新时间:2023-12-04 06:37:40 26 4
gpt4 key购买 nike

我试图只显示表格中所有数据的两位小数,并将所有内容集中对齐。第一列是国家,其余是数字。这是代码

output$Composite <- renderDataTable(FVI_DATA_COMPOSITE, options = list(pageLength = 15,lengthChange=FALSE))

知道怎么做吗?

编辑:这不起作用。
output$Composite <- renderDataTable(FVI_DATA_COMPOSITE, 
options = list(pageLength = 10,lengthChange=FALSE), round(FVI_DATA_COMPOSITE[3:9], digits=2)

最佳答案

output$Composite <- renderDataTable(datatable(FVI_DATA_COMPOSITE, 
options = list(pageLength = 10,lengthChange=FALSE)) %>% formatRound(c(3:9), 2)

Documentation here

编辑:居中对齐
output$Composite <- renderDataTable(datatable(FVI_DATA_COMPOSITE, 
options = list(pageLength = 10,lengthChange=FALSE)) %>%
formatRound(c(3:9), 2) %>%
formatStyle(columns = c(3:9), 'text-align' = 'center')

关于R Shiny renderDataTable 显示两位小数并居中对齐所有数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44305021/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com