Tidy summarizes information about the components of a model. A model component might be a single term in a regression, a single hypothesis, a cluster, or a class. Exactly what tidy considers to be a model component varies cross models but is usually self-evident. If a model has several distinct types of components, you will need to specify which components to return.
The methods should work with any model that conforms to the ergm class, such as those produced from weighted networks by the ergm.count package.
# S3 method for ergm tidy(x, conf.int = FALSE, conf.level = 0.95, exponentiate = FALSE, ...)
x | An |
---|---|
conf.int | Logical indicating whether or not to include a confidence
interval in the tidied output. Defaults to |
conf.level | The confidence level to use for the confidence interval
if |
exponentiate | Logical indicating whether or not to exponentiate the
the coefficient estimates. This is typical for logistic and multinomial
regressions, but a bad idea if there is no log or logit link. Defaults
to |
... | Additional arguments to pass to |
A tibble::tibble with one row for each coefficient in the exponential random graph model, with columns:
The term in the model being estimated and tested
The estimated coefficient
The standard error
The MCMC error
The two-sided p-value
Hunter DR, Handcock MS, Butts CT, Goodreau SM, Morris M (2008b). ergm: A Package to Fit, Simulate and Diagnose Exponential-Family Models for Networks. Journal of Statistical Software, 24(3). http://www.jstatsoft.org/v24/i03/.
tidy()
, ergm::ergm()
, ergm::control.ergm()
,
ergm::summary()
Other ergm tidiers: glance.ergm
library(ergm)#> Error in library(ergm): there is no package called ‘ergm’# Using the same example as the ergm package # Load the Florentine marriage network data data(florentine)#> Warning: data set ‘florentine’ not found# Fit a model where the propensity to form ties between # families depends on the absolute difference in wealth gest <- ergm(flomarriage ~ edges + absdiff("wealth"))#> Error in ergm(flomarriage ~ edges + absdiff("wealth")): could not find function "ergm"#> Error in tidy(gest): object 'gest' not found# Show coefficients as odds ratios with a 99% CI tidy(gest, exponentiate = TRUE, conf.int = TRUE, conf.level = 0.99)#> Error in tidy(gest, exponentiate = TRUE, conf.int = TRUE, conf.level = 0.99): object 'gest' not found# Take a look at likelihood measures and other # control parameters used during MCMC estimation glance(gest)#> Error in glance(gest): object 'gest' not found#> Error in glance(gest, deviance = TRUE): object 'gest' not found#> Error in glance(gest, mcmc = TRUE): object 'gest' not found