Estimates the intensity of the effects using odds ratio and probabilities

stat_ef_int(m, type = "odds")

Arguments

m

A model object

type

Prints either Odds ratios or Probabilities ("odds", "prob")

Value

a data.frame

Details

This function processes the output of an Exponential Random Graph or a logistic models model and estimates the intensity of the effects using either Odds ratios or Probabilities The function returns a data frame with four colums: - Estimates - Either Odds ratios or Probabilities - Standard Errors - P-values

See also

Other statistics functions: stat_plot_gof(), stat_plot_gof_as_btergm()

Examples

if (FALSE) { # \dontrun{
data(florentine, package = "snafun")
fflom <- florentine$flomarriage
flom <- to_network(fflom)
m <- ergm::ergm(flom ~ edges + nodecov("Wealth"))

stat_ef_int(m, "prob")
} # }