如何去掉gtsummary回归table参考组行中的问号符号?

How to remove the question mark symbol in reference group row of gtsummary regression table?

我使用 tbl_regression 来可视化我的主要效果(见下图和代码),我想知道如何去掉我的参考组置信区间列中的问号符号(“中性的”)。 add_estimate_to_reference_rows 只为 OR 添加空值。水平线或空 95% CI 比 CI 列中的问号符号看起来更好。

m.crude.cat %>% tbl_regression(求幂 = 真,add_estimate_to_reference_rows = 真)

tbl_regression output

问题 make 是一个破折号,看起来您的机器上存在某种编码问题。但是,您可以将 em-dash 更改为其他任何内容。示例如下!

library(gtsummary)
packageVersion("gtsummary")
#> [1] '1.4.0'

tbl <-
  glm(response ~ grade, trial, family = binomial) %>%
  tbl_regression(exponentiate = TRUE, 
                 add_estimate_to_reference_rows = TRUE) %>%
  modify_table_styling(
    columns = c(estimate, ci),
    rows = reference_row %in% TRUE,
    missing_symbol = "Ref."
  )

reprex package (v2.0.0)

于 2021-04-30 创建