R/coef.R

Defines functions coef.FLAMES

Documented in coef.FLAMES

#' Coefficients for FLAMES class
#'
#' @param object FLAMES object to restore the coefficients
#' @param ... Other parameters for coef
#'
#' @method coef FLAMES
#'
#' @export

coef.FLAMES <- function(object, ...){
  coefficients <- colMeans(object$beta)
  return(coefficients)
}
DouglasMesquita/FLAMES documentation built on May 28, 2022, 8:35 a.m.