R/coef.npsf.R

Defines functions coef.npsf

Documented in coef.npsf

coef.npsf <- function( object, ... ) {
  if(is.null(object$coef) | is.null(object)){
    stop( gettextf("There are no coefficients in '%s'.", deparse(substitute(object))) )
  }
  return( object$coef )
}

Try the npsf package in your browser

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

npsf documentation built on Nov. 23, 2020, 1:07 a.m.