R/summary.MCcov.R

Defines functions summary.MCcov

Documented in summary.MCcov

summary.MCcov <- function(object,...){
  if(!is.null(object$call))
  {
    cat("Call:\n")
    print(object$call)
  }
cat("\nCoefficients:\n")

cat("\n Be - Parameters affecting the logit for the initial probabilities:\n")
print(round(object$Be,4))
if(is.null(object$seBe)==FALSE){
	cat("\n Standard errors for Be:\n")
	print(round(object$seBe,4))
}

cat("\n Ga - Parameters affecting the logit for the transition probabilities:\n")
print(round(object$Ga,4))
if(is.null(object$seGa)==FALSE){
	cat("\n Standard errors for Ga:\n")
	print(round(object$seGa,4))
}

}

Try the LMest package in your browser

Any scripts or data that you put into this service are public.

LMest documentation built on Aug. 27, 2023, 5:06 p.m.