我想为平均值和 SD 的 gtsummary 中的连续变量输出获得 3 位小数。在默认设置中,它导出 2 个小数;在之前的帖子中,有一种方法可以将分类变量的百分比更改为小数点后 1
# set theme where percentages are rounded to 1 decimal place
set_gtsummary_theme(list(
"tbl_summary-fn:percent_fun" = function(x) sprintf(x * 100, fmt='%#.1f')
))
有没有办法改变连续变量的平均值和标准差?
谢谢!
#gtsummary