R/coef.rem.fi.R

Defines functions coef.rem.fi

Documented in coef.rem.fi

#' @export
coef.rem.fi <- function(object,...){
  vcov <- solvecov(object$hessian)$inv
  coeff <- data.frame(estimate=coef(object$mr),
                      se=sqrt(diag(vcov)))
  return(coeff)
}

Try the mrds package in your browser

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

mrds documentation built on July 9, 2023, 6:06 p.m.