EVOLUTION-MANAGER
Edit File: make_clusters.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: Creates a communities object.</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 make_clusters {igraph}"><tr><td>make_clusters {igraph}</td><td style="text-align: right;">R Documentation</td></tr></table> <h2>Creates a communities object.</h2> <h3>Description</h3> <p>This is useful to integrate the results of community finding algorithms that are not included in igraph. </p> <h3>Usage</h3> <pre> make_clusters( graph, membership = NULL, algorithm = NULL, merges = NULL, modularity = TRUE ) </pre> <h3>Arguments</h3> <table summary="R argblock"> <tr valign="top"><td><code>graph</code></td> <td> <p>The graph of the community structure.</p> </td></tr> <tr valign="top"><td><code>membership</code></td> <td> <p>The membership vector of the community structure, a numeric vector denoting the id of the community for each vertex. It might be <code>NULL</code> for hierarchical community structures.</p> </td></tr> <tr valign="top"><td><code>algorithm</code></td> <td> <p>Character string, the algorithm that generated the community structure, it can be arbitrary.</p> </td></tr> <tr valign="top"><td><code>merges</code></td> <td> <p>A merge matrix, for hierarchical community structures (or <code>NULL</code> otherwise.</p> </td></tr> <tr valign="top"><td><code>modularity</code></td> <td> <p>Modularity value of the community structure. If this is <code>TRUE</code> and the membership vector is available, then it the modularity values is calculated automatically.</p> </td></tr> </table> <h3>Value</h3> <p>A <code>communities</code> object. </p> <hr /><div style="text-align: center;">[Package <em>igraph</em> version 1.3.5 <a href="00Index.html">Index</a>]</div> </body></html>