R: 在 gtsummary 包中使用 select 辅助函数时出现问题
R: Problem using select helper function in gtsummary package
我正在使用 gtsummary 包构建 table 患者特征。我在使用选择功能 all_dichotomous
时遇到问题。有些变量默认显示在一行,但我希望它们都显示在多行。
这是我正在使用的代码,但出现错误。有什么建议么?谢谢!这个数据集在包里。
library(gtsummary)
trial %>%
tbl_summary(type = list(all_dichotomous = "categorical"))
你快搞定了!您将希望在列表中使用公式表示法,而不是命名列表。像这样:
library(gtsummary)
trial %>%
dplyr::select(response, age) %>%
tbl_summary(type = list(all_dichotomous() ~ "categorical"))
这里有一些例子:http://www.danieldsjoberg.com/gtsummary/articles/tbl_summary.html#select_helpers
我正在使用 gtsummary 包构建 table 患者特征。我在使用选择功能 all_dichotomous
时遇到问题。有些变量默认显示在一行,但我希望它们都显示在多行。
这是我正在使用的代码,但出现错误。有什么建议么?谢谢!这个数据集在包里。
library(gtsummary)
trial %>%
tbl_summary(type = list(all_dichotomous = "categorical"))
你快搞定了!您将希望在列表中使用公式表示法,而不是命名列表。像这样:
library(gtsummary)
trial %>%
dplyr::select(response, age) %>%
tbl_summary(type = list(all_dichotomous() ~ "categorical"))
这里有一些例子:http://www.danieldsjoberg.com/gtsummary/articles/tbl_summary.html#select_helpers