coNetwork: Random perturbations of a reference network

Description Usage Arguments Value Author(s) See Also Examples

Description

Simulates a network from another network object by randomly perturbing a given number of edges.

Usage

1
2
3
coNetwork(graph,
          delta,
          name = "a co-network")

Arguments

graph

an object of class simone.network (typically generated by the rNetwork function).

delta

an integer giving the number of edges to randomly remove AND add to graph in order to obtain a randomly perturbed network.

name

a character string indicating the name of the perturbed network.

Value

Returns an object of class simone.network, see rNetwork for further details.

Author(s)

J. Chiquet

See Also

rNetwork, plot.simone.network.

Examples

1
2
3
4
5
6
## ancestor and child network generation
ancestor <- rNetwork(p = 20, pi = 20, name = "ancestor")
child    <- coNetwork(ancestor, delta = 1, name = "child")

# network comparison
plot(ancestor, child)

simone documentation built on May 2, 2019, 2:37 a.m.