R/vcov.R

Defines functions vcov.garma_model

Documented in vcov.garma_model

#' Covariance matrix
#'
#' Covariance matrix of parameters if available
#' @param object The garma_model object
#' @param ... Other parameters. Ignored.
#' @return (double) estimated variance-covariance matrix of the parameter estimates
#' @export
vcov.garma_model <- function(object, ...) {
  return(object$var.coef)
}

Try the garma package in your browser

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

garma documentation built on April 4, 2025, 2:13 a.m.