fmhfit: Fitted ergm.ego model object

fmhfitR Documentation

Fitted ergm.ego model object

Description

This is an object with a fitted model to faux.mesa.high data using the code shown below in the Examples section.

Format

An object of class ergm.ego.

Examples

## Not run: 
data(faux.mesa.high)
fmh.ego <- egor::as.egor(faux.mesa.high)
fmhfit <- ergm.ego(
  fmh.ego ~ edges + degree(0:3) + 
    nodefactor("Race") + nodematch("Race")
  + nodefactor("Sex")+nodematch("Sex")
  + absdiff("Grade") + gwesp(0, fix=TRUE), 
  popsize = network.size(faux.mesa.high),
  control = control.ergm.ego(
    ergm = control.ergm(parallel=2)
  )
)

## End(Not run)

ergm.ego documentation built on May 31, 2023, 7:28 p.m.

Related to fmhfit in ergm.ego...