Become an expert in R — Interactive courses, Cheat Sheets, certificates and more!
Get Started for Free

sample_

Sample from a random graph model


Description

Generic function for sampling from network models.

Usage

sample_(...)

Arguments

...

Parameters, see details below.

Details

TODO

Examples

pref_matrix <- cbind(c(0.8, 0.1), c(0.1, 0.7))
blocky <- sample_(sbm(n = 20, pref.matrix = pref_matrix,
  block.sizes = c(10, 10)))

blocky2 <- pref_matrix %>%
  sample_sbm(n = 20, block.sizes = c(10, 10))

## Arguments are passed on from sample_ to sample_sbm
blocky3 <- pref_matrix %>%
  sample_(sbm(), n = 20, block.sizes = c(10, 10))

igraph

Network Analysis and Visualization

v1.2.10
GPL (>= 2)
Authors
See AUTHORS file.
Initial release

We don't support your browser anymore

Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.