Nothing
#' Summarise the results of 'mmcsd' fit.
#'
#' @param object A mmcsd 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"
#' )
#' summary(fit)
#' }
summary.mmcsd <- function(object, ...) {
coefficientsTable <- createCoefficientsTable(object)
catCall(object)
catCoefficientsTable(coefficientsTable, object)
catSampleDesign(object)
catSigma(object)
catSigmaHat(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.