EVOLUTION-MANAGER
Edit File: sample_.html
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><title>R: Sample from a random graph model</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <link rel="stylesheet" type="text/css" href="R.css" /> </head><body> <table width="100%" summary="page for sample_ {igraph}"><tr><td>sample_ {igraph}</td><td style="text-align: right;">R Documentation</td></tr></table> <h2>Sample from a random graph model</h2> <h3>Description</h3> <p>Generic function for sampling from network models. </p> <h3>Usage</h3> <pre> sample_(...) </pre> <h3>Arguments</h3> <table summary="R argblock"> <tr valign="top"><td><code>...</code></td> <td> <p>Parameters, see details below.</p> </td></tr> </table> <h3>Details</h3> <p>TODO </p> <h3>Examples</h3> <pre> 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)) </pre> <hr /><div style="text-align: center;">[Package <em>igraph</em> version 1.3.5 <a href="00Index.html">Index</a>]</div> </body></html>