Networks {ergm.multi} | R Documentation |
A multinetwork network representation.
Description
A function for specifying the LHS of a multi-network
(a.k.a. multilevel) ERGM. Typically used in conjunction with the
N()
term operator.
Usage
Networks(...)
Arguments
... |
network specification, in one of two formats:
|
Value
A network
object comprising the provided networks, with multinetwork metadata.
Due to certain optimizations, the resulting network
object's network and vertex attributes should be treated as read-only: do not modify them. If you need to change existing attributes or add new ones, do so on the input networks and call Networks(...)
again.
See Also
ergmTerm
for specific terms.
vignette("Goeyvaerts_reproduction")
for a demonstration.
Examples
data(samplk)
# Method 1: list of networks
monks <- Networks(list(samplk1, samplk2))
ergm(monks ~ N(~edges))
# Method 2: networks as arguments
monks <- Networks(samplk1, samplk2)
ergm(monks ~ N(~edges))