From db9bd35139c783845e9e044a2181735daf5b3dd5 Mon Sep 17 00:00:00 2001 From: Joe Zhu Date: Thu, 1 Dec 2022 04:06:27 +0800 Subject: [PATCH] fix gee coefficient display (#695) close #694 Fixes #nnn Signed-off-by: Joe Zhu Co-authored-by: Emily de la Rua <59304861+edelarua@users.noreply.github.com> --- R/tm_a_gee.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/R/tm_a_gee.R b/R/tm_a_gee.R index 81ca23ecd2..38bce0aa88 100644 --- a/R/tm_a_gee.R +++ b/R/tm_a_gee.R @@ -76,7 +76,7 @@ template_a_gee <- function(output_table, } else if (output_table == "t_gee_coef") { substitute( expr = { - result_table <- tern.gee::as.rtable(model_fit, type = "coef", conf_level = conf_level) + result_table <- tern.gee::as.rtable(data.frame(Coefficient = model_fit$coefficients)) subtitles(result_table) <- st main_footer(result_table) <- mf },