Skip to content

Commit

Permalink
AICc space correction
Browse files Browse the repository at this point in the history
  • Loading branch information
AQLT committed Jul 22, 2024
1 parent c29d437 commit b85ee84
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions R/display.R
Original file line number Diff line number Diff line change
Expand Up @@ -238,9 +238,9 @@ print.summary.JD3_LIKELIHOOD<-function(x, ...){
cat("Loglikelihood:", x$ll)
if (x$ll != x$adjustedll)cat(", Adjusted loglikelihood:", x$adjustedll)
cat("\nStandard error of the regression (ML estimate):", x$se, "\n")
cat("AIC:", x$aic, ", ")
cat("AICc:", x$aicc, ", ")
cat("BIC:", x$bic, "\n")
cat("AIC: ", x$aic, ", ",
"AICc: ", x$aicc, ", ",
"BIC: ", x$bic, "\n", sep = "")
invisible(x)
}

Expand Down

0 comments on commit b85ee84

Please sign in to comment.