From 05d65134919d9ac78ff16a44efda757fd1a4dc16 Mon Sep 17 00:00:00 2001 From: Daniel Date: Mon, 18 Nov 2024 08:25:20 +0100 Subject: [PATCH] fix --- R/get_statistic.R | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/R/get_statistic.R b/R/get_statistic.R index 8443f68b0..88495b134 100644 --- a/R/get_statistic.R +++ b/R/get_statistic.R @@ -197,13 +197,8 @@ get_statistic.merModList <- function(x, ...) { #' @export get_statistic.asym <- function(x, ...) { cftable <- summary(x)$coef_table - - params <- rownames(cftable) - params <- gsub("^plus__", "+", params) - params <- gsub("^minus__", "-", params) - out <- data.frame( - Parameter = params, + Parameter = find_parameters(x)$conditional, Statistic = cftable[, "t val."], stringsAsFactors = FALSE, row.names = NULL