| print.summary.ergm {ergm} | R Documentation |
## S3 method for class 'summary.ergm'
print(x, digits = max(3, getOption("digits") - 3),
correlation = FALSE, covariance = FALSE,
signif.stars = getOption("show.signif.stars"), eps.Pvalue = 1e-04,
print.header = TRUE, print.formula = TRUE, print.fitinfo = TRUE,
print.coefmat = TRUE, print.message = TRUE, print.deviances = TRUE,
print.drop = TRUE, print.offset = TRUE, print.degeneracy = TRUE,
...)
## S3 method for class 'ergm'
summary(object, ..., correlation = FALSE,
covariance = FALSE, total.variation = TRUE)
x |
object of class |
digits |
Significant digits for coefficients |
correlation |
logical; if |
covariance |
logical; if |
signif.stars |
whether to print dots and stars to signify
statistical significance. See |
eps.Pvalue |
p-values below this level will be printed
as "< |
print.header, print.formula, print.fitinfo, print.coefmat, print.message, print.deviances, print.drop, print.offset, print.degeneracy |
which components of the fit summary to print. |
... |
Arguments to |
object |
an object of class |
total.variation |
logical; if |
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. Note that for
backwards compatibility, it returns two coefficient tables:
$coefs which does not contain the z-statistics and
$coefficeints which does (and is therefore more similar to
those returned by summary.lm()).
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)