# S3 method for 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 ergm
summary(object, ..., correlation = FALSE,
covariance = FALSE, total.variation = TRUE)
object of class summary.ergm
returned by
summary.ergm()
.
Significant digits for coefficients
logical; if TRUE
, the correlation matrix
of the estimated parameters is returned and printed.
logical; if TRUE
, the covariance matrix of
the estimated parameters is returned and printed.
whether to print dots and stars to signify
statistical significance. See print.summary.lm()
.
\(p\)-values below this level will be printed
as "<eps.Pvalue
".
which components of the fit summary to print.
Arguments to logLik.ergm
an object of class "ergm"
, usually, a result
of a call to ergm
.
logical; if TRUE
, the standard errors
reported in the Std. Error
column are based on the sum of
the likelihood variation and the MCMC variation. If FALSE
only the likelihood varuation is used. The \(p\)-values are
based on this source of variation.
The function summary.ergm
computes and
returns a list of summary statistics of the fitted
ergm
model given in object
.
summary.ergm
tries to be smart about formatting the
coefficients, standard errors, etc.
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.
# NOT RUN {
data(florentine)
x <- ergm(flomarriage ~ density)
summary(x)
# }
Run the code above in your browser using DataLab