R/coef.maxLik.R

Defines functions coef.summary.maxLik coef.maxLik coef.maxim

Documented in coef.maxim coef.maxLik coef.summary.maxLik

coef.maxim <- function( object, ... ) {
   return( object$estimate )
}

coef.maxLik <- function( object, ... ) {
   return( object$estimate )
}

coef.summary.maxLik <- function( object, ... ) {
   result <- object$estimate
   return( result )
}

Try the maxLik package in your browser

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

maxLik documentation built on Nov. 25, 2020, 3 a.m.