R/print.search_lqmix.R

Defines functions print.search_lqmix

Documented in print.search_lqmix

#' Print a \code{search_lqmix} object
#'
#' Print an object of \code{\link{class}} \code{search_lqmix}
#'
#'
#' @param x a \code{search_lqmix} object
#' @param digits a non-null value for digits specifying the minimum number of significant digits to be printed
#' @param ... not used
#'
#' @return Return a \code{search_lqmix} object
#'
#' @export


print.search_lqmix = function(x, digits = max(3, getOption("digits") -3), ...){

    oo = x$optimal
    oo$call = NULL

    # if(!is.null(oo$se.scale)) print(summary(oo))
    # else
    print(oo)

  #if(oo$miss == "non-monotone" & oo$mod != "TC") message("Data affected by non-monotone missingness: parameter estimates may be biased.")
  invisible(x)
}

Try the lqmix package in your browser

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

lqmix documentation built on April 4, 2025, 1:42 a.m.