Skip to content

Commit 9ca19f3

Browse files
committed
fix print error
1 parent 216b4f2 commit 9ca19f3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lpme/R/lpme_S3.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ print.lpme_onerun <- function(x, ...) {
1717
cat("Single-Run LPME Results\n")
1818
cat("-----------------------\n")
1919
cat(sprintf("Uncorrected Coefficient (OLS): %.3f (SE: %.3f)\n", x$ols_coef, x$ols_se))
20-
cat(sprintf("Corrected Coefficient: %.3f (SE: %.3f)\n", x$ols_coef, x$ols_se))
20+
cat(sprintf("Corrected Coefficient: %.3f (SE: %.3f)\n", x$corrected_ols_coef, x$corrected_ols_se))
2121
cat("Use summary() for detailed results.\n")
2222
}
2323

0 commit comments

Comments
 (0)