| summary.ergm {ergm} | R Documentation |
summary method for class "ergm".
## S3 method for class 'ergm'
summary(object, ...,
digits = max(3, getOption("digits") - 3),
correlation = FALSE, covariance = FALSE,
total.variation=TRUE,
eps = 1e-04)
object |
an object of class |
digits |
Significant digits for coefficients |
correlation |
logical; if |
covariance |
logical; if |
total.variation |
logical; if |
eps |
number; indicates the smallest p-value. See |
... |
Arguments to |
summary.ergm tries to be smart about formatting the
coefficients, standard errors, etc.
The function summary.ergm computes and returns a list of summary
statistics of the fitted ergm model given in object.
network, ergm, print.ergm.
The model fitting function ergm, summary.
Function coef will extract the matrix of coefficients
with standard errors, t-statistics and p-values.
data(florentine) x <- ergm(flomarriage ~ density) summary(x)