R/coef.lqr.R

Defines functions coef.lqr

Documented in coef.lqr

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

coef.lqr = 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.