| control.gofN.ergm {ergm.multi} | R Documentation |
Auxiliary for Controlling Multinetwork ERGM Linear Goodness-of-Fit Evaluation
Description
control.gofN.ergm (or its alias, control.gofN) is
intended to be used with gofN() specifically and will "inherit"
as many control parameters from ergm fit as possible().
Usage
control.gofN.ergm(
nsim = 100,
obs.twostage = nsim/2,
array.max = 128,
simulate = control.simulate.ergm(),
obs.simulate = control.simulate.ergm(),
parallel = 0,
parallel.type = NULL,
parallel.version.check = TRUE,
parallel.inherit.MT = FALSE
)
control.gofN(
nsim = 100,
obs.twostage = nsim/2,
array.max = 128,
simulate = control.simulate.ergm(),
obs.simulate = control.simulate.ergm(),
parallel = 0,
parallel.type = NULL,
parallel.version.check = TRUE,
parallel.inherit.MT = FALSE
)
Arguments
nsim |
Number of networks to be randomly drawn using Markov chain Monte Carlo. This sample of networks provides the basis for comparing the model to the observed network. |
obs.twostage |
Either
Then, |
array.max |
Try to avoid creating arrays larger in size (in
megabytes) than this. Is ignored if |
simulate, obs.simulate |
Control lists produced by
|
parallel |
Number of threads in which to run the sampling. Defaults to 0 (no parallelism). See the entry on parallel processing for details and troubleshooting. |
parallel.type |
API to use for parallel processing. Supported values
are |
parallel.version.check |
Logical: If TRUE, check that the version of
|
parallel.inherit.MT |
Logical: If TRUE, slave nodes and
processes inherit the |
Details
Auxiliary function as user interface for fine-tuning ERGM Goodness-of-Fit Evaluation.