R/coef.trial.fi.R

Defines functions coef.trial.fi

Documented in coef.trial.fi

#' @export
coef.trial.fi <- function(object,...){
  vcov <- solvecov(object$hessian)$inv
  coeff <- data.frame(estimate=coef(object$mr),
                      se=sqrt(diag(vcov)))
  return(coeff)
}
DistanceDevelopment/mrds documentation built on Feb. 15, 2024, 9:25 a.m.