Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
strengejacke committed Nov 18, 2024
1 parent 079cff6 commit 05d6513
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions R/get_statistic.R
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 05d6513

Please sign in to comment.