reedmolloy | R Documentation |
Generate a undirected network where the degree of each actor is specified. The degree is the number of actors the actor is tied to.
This returns a network
object and requires the igraph
package.
reedmolloy(deg, maxit=10, verbose=TRUE)
deg |
vector of counts where element |
maxit |
integer; maximum number of jitterings of the degree sequence to find a valid network. |
verbose |
Print out details of the progress of the algorithm. |
The network is returned as a network
object.
See the papers on https://handcock.github.io/?q=Holland for details
Jones, J. H. and Handcock, M. S. "An assessment of preferential attachment as a mechanism for human sexual network formation," Proceedings of the Royal Society, B, 2003, 270, 1123-1128.
ayulemle, dyule
# Now, simulate a Poisson Lognormal distribution over 100
# observations with mean = -1 and s.d. = 1.
set.seed(2)
s4 <- simpln(n=100, v=c(-1,1))
table(s4)
#
simr <- reedmolloy(s4)
simr
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.