powered by
vcov is a method which extracts the covariance matrix from the output object returned by the ergm estimation.
vcov
ergm
# S3 method for ergm vcov(object, sources=c("all","model","estimation"), …)
The ergm output object.
Specify whether to return the covariance matrix from the ERGM model, the estimation process, or both combined.
other arguments.
Coefficients extracted from the model object object.
object
coef.ergm
# NOT RUN { data(florentine) fit <- ergm(flomarriage ~ edges + concurrent) vcov(fit, sources="model") vcov(fit, sources="estimation") vcov(fit, sources="all") # the default # }
Run the code above in your browser using DataLab