R/coef.lqmix.R

Defines functions coef.lqmix

Documented in coef.lqmix

#' Print the estimated fixed coefficients of an \code{lqmix} object
#'
#' Print the estimated fixed coefficients of a fitted model of \code{\link{class}} \code{lqmix}
#'
#' @param object an \code{lqmix} object
#' @param \dots not used
#'
#' @return Return the estimated fixed coefficients obtained at convergence of the EM algorithm for a fitted model of \code{\link{class}} \code{lqmix}
#'
#' @export
#'
#'

coef.lqmix = function(object, ...){

  coefficients = object$betaf
  return(coefficients)

}

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.