Nothing
#' Summarise the results of 'cov_mmcsd' fit.
#'
#' @param object A mmcsd.theta fitted model
#' @param ... Additional params passed to summary
#'
#' @return Return NULL and print in terminal the results.
#'
#' @export
#'
#' @examples
#' \donttest{
#' fit <- mmcsd(
#' score ~ wave + ageg + ecacg + qualifg,
#' waves = wave, ids = id,
#' weights = weight, stratum = strata, cluster = cluster,
#' data = example_data, sigma = "exchangeable"
#' )
#' fitTheta_ucm <- cov_mmcsd(fit,
#' fittingType = "PML", sigmaThetaExpr = "UCM",
#' optimParams = list(par = c(7, 5))
#' )
#' summary(fitTheta_ucm)
#'
#' }
summary.mmcsd.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))
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.