Skip to content

Commit

Permalink
fix print for p_significance
Browse files Browse the repository at this point in the history
  • Loading branch information
strengejacke committed Sep 16, 2024
1 parent 93de7a9 commit 81cbdbc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion R/print.R
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,8 @@ print.p_significance <- function(x, digits = 2, ...) {
caption <- "Practical Significance"
out <- as.data.frame(do.call(rbind, threshold))
colnames(out) <- c("ROPE_low", "ROPE_high")
x <- cbind(x, out)
x$ROPE_low <- out$ROPE_low
x$ROPE_high <- out$ROPE_high
ci_string <- "ROPE"
} else {
caption <- sprintf(
Expand Down

0 comments on commit 81cbdbc

Please sign in to comment.