is.network.static {dynamicnetwork} | R Documentation |
checks that its argument is a network, but is not a dynamic network.
is.network.static(x)
x |
the object (presumeably a network) to check |
Only checks that argument is a network and is not dynamic, does not check actual datastructure for integrity
TRUE if argument is a network
and is not a dynamicnetwork
skyebend@skyeome.net
is.network
in the network package, is.dynamic
is.network.static(list()); #FALSE is.network.static(network.initialize(5)); #TRUE is.network(as.dynamic(network.initialize(5))); #TRUE, is a network, AND dynamic is.network.static(as.dynamic(network.initialize(5))); #FALSE