Description Usage Arguments Examples
Evaluate nodes for value in invasion detection (invasion starting from each node in turn) using function onestart for one realization. The output is a matrix with rows = starting nodes (introduction nodes), columns = samping nodes, and entries = number of nodes not invaded by time detected at the sampling node having started at the introduction node.
1 | multistart(adjmat, stoch)
|
adjmat |
adjacency matrix for evaluation |
stoch |
logical var indicating whether adjacency matrix entries are fixed (1 or 0) or probabilities |
1 2 3 4 | Amat <- matrix(c(1,0,0,0,1,1,0,0,0,1,1,0,1,1,1,1),nrow=4,ncol=4)
multistart(adjmat=Amat, stoch=F)
sAmat <- Amat * 0.7 # each potential link has probability 0.7 of existing in one realization
multistart(adjmat=sAmat, stoch=T)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.