R/print.estLCCR.R

Defines functions print.estLCCR

Documented in print.estLCCR

print.estLCCR <-
function(x, ...){
  
  cat("\nEstimation of latent class models for capture-recapture data\n")
  cat("\n")
  cat("Call:\n")
  print(x$call)
  cat("\nAvailable objects:\n")
  print(names(x))
  cat("\n")
  print(c(LogLik=x$lk,np=x$np,AIC=x$AIC,BIC=x$BIC))
  cat("\nEstimate of population size:\n")
  print(c(Nh=x$N))
  
}

Try the LCCR package in your browser

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

LCCR documentation built on Dec. 11, 2021, 9:30 a.m.