有没有办法在 tbl_summary 中使用 add_p 或 add_difference 函数进行尾部 t 检验?
Is there a way to conduct one tailed t-test using add_p or add_difference function in tbl_summary?
我想包含使用 gtsummary 的单尾 t 检验的结果。有办法吗?
您可以通过 add_p(test.args=)
参数将参数传递给 t.test()
。在您的情况下,您需要传递 t.test(alternative = "less")
(或 "greater"
)参数。示例如下!
library(gtsummary)
tbl <-
trial %>%
select(age, marker, trt) %>%
tbl_summary(by = trt, missing = "no") %>%
add_p(
all_continuous() ~ "t.test",
test.args = all_tests("t.test") ~ list(alternative = "less")
)
由 reprex package (v2.0.1)
于 2021 年 10 月 10 日创建
我想包含使用 gtsummary 的单尾 t 检验的结果。有办法吗?
您可以通过 add_p(test.args=)
参数将参数传递给 t.test()
。在您的情况下,您需要传递 t.test(alternative = "less")
(或 "greater"
)参数。示例如下!
library(gtsummary)
tbl <-
trial %>%
select(age, marker, trt) %>%
tbl_summary(by = trt, missing = "no") %>%
add_p(
all_continuous() ~ "t.test",
test.args = all_tests("t.test") ~ list(alternative = "less")
)