R/cov_clm__summary.clm.theta____main.R

Defines functions summary.clm.theta

Documented in summary.clm.theta

#' Summarise the results of 'cov_clm' fit.
#'
#' @param object A clm.theta fitted model
#' @param ... Additional params passed to summary
#'
#' @return Return NULL and print in terminal the results.
#'
#' @export

summary.clm.theta <- function(object, ...) {
  thetaTable <- getThetaTable(object)
  optimTable <- getOptimTable(object)

  catCall(object)
  catFitTypes(object)
  catFitResults(object, thetaTable)
  catOptimDetails(object, optimTable)
  catSigmaThetaMatrix(object)
  catGoodnessOfFitMeasures(object)

  return(invisible(NULL))
}
phmpacheco-ufjf/clm documentation built on Dec. 22, 2021, 8:40 a.m.