Sophie

Sophie

distrib > Mageia > 4 > x86_64 > by-pkgid > e5ddaa4c8aef3b801d60a051db101461 > files > 1650

python-networkx-1.8.1-3.mga4.noarch.rpm



<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">


<html xmlns="http://www.w3.org/1999/xhtml">
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    
    <title>betweenness_centrality &mdash; NetworkX 1.8.1 documentation</title>
    
    <link rel="stylesheet" href="../../_static/networkx.css" type="text/css" />
    <link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
    
    <script type="text/javascript">
      var DOCUMENTATION_OPTIONS = {
        URL_ROOT:    '../../',
        VERSION:     '1.8.1',
        COLLAPSE_INDEX: false,
        FILE_SUFFIX: '.html',
        HAS_SOURCE:  false
      };
    </script>
    <script type="text/javascript" src="../../_static/jquery.js"></script>
    <script type="text/javascript" src="../../_static/underscore.js"></script>
    <script type="text/javascript" src="../../_static/doctools.js"></script>
    <link rel="search" type="application/opensearchdescription+xml"
          title="Search within NetworkX 1.8.1 documentation"
          href="../../_static/opensearch.xml"/>
    <link rel="top" title="NetworkX 1.8.1 documentation" href="../../index.html" />
    <link rel="up" title="Centrality" href="../algorithms.centrality.html" />
    <link rel="next" title="edge_betweenness_centrality" href="networkx.algorithms.centrality.edge_betweenness_centrality.html" />
    <link rel="prev" title="closeness_centrality" href="networkx.algorithms.centrality.closeness_centrality.html" /> 
  </head>
  <body>
<div style="color: black;background-color: white; font-size: 3.2em; text-align: left; padding: 15px 10px 10px 15px">
NetworkX
</div>

    <div class="related">
      <h3>Navigation</h3>
      <ul>
        <li class="right" style="margin-right: 10px">
          <a href="../../genindex.html" title="General Index"
             accesskey="I">index</a></li>
        <li class="right" >
          <a href="../../py-modindex.html" title="Python Module Index"
             >modules</a> |</li>
        <li class="right" >
          <a href="networkx.algorithms.centrality.edge_betweenness_centrality.html" title="edge_betweenness_centrality"
             accesskey="N">next</a> |</li>
        <li class="right" >
          <a href="networkx.algorithms.centrality.closeness_centrality.html" title="closeness_centrality"
             accesskey="P">previous</a> |</li>
        <li><a href="http://networkx.github.com/">NetworkX Home </a> |&nbsp;</li>
        <li><a href="http://networkx.github.com/documentation.html">Documentation </a>|&nbsp;</li>
        <li><a href="http://networkx.github.com/download.html">Download </a> |&nbsp;</li>
        <li><a href="http://github.com/networkx">Developer (Github)</a></li>



          <li><a href="../index.html" >Reference</a> &raquo;</li>
          <li><a href="../pdf_reference.html" >Reference</a> &raquo;</li>
          <li><a href="../algorithms.html" >Algorithms</a> &raquo;</li>
          <li><a href="../algorithms.centrality.html" accesskey="U">Centrality</a> &raquo;</li> 
      </ul>
    </div>



      <div class="sphinxsidebar">
        <div class="sphinxsidebarwrapper">
  <h4>Previous topic</h4>
  <p class="topless"><a href="networkx.algorithms.centrality.closeness_centrality.html"
                        title="previous chapter">closeness_centrality</a></p>
  <h4>Next topic</h4>
  <p class="topless"><a href="networkx.algorithms.centrality.edge_betweenness_centrality.html"
                        title="next chapter">edge_betweenness_centrality</a></p>
<div id="searchbox" style="display: none">
  <h3>Quick search</h3>
    <form class="search" action="../../search.html" method="get">
      <input type="text" name="q" />
      <input type="submit" value="Go" />
      <input type="hidden" name="check_keywords" value="yes" />
      <input type="hidden" name="area" value="default" />
    </form>
    <p class="searchtip" style="font-size: 90%">
    Enter search terms or a module, class or function name.
    </p>
</div>
<script type="text/javascript">$('#searchbox').show(0);</script>
        </div>
      </div>

    <div class="document">
      <div class="documentwrapper">
        <div class="bodywrapper">
          <div class="body">
            
  <div class="section" id="betweenness-centrality">
<h1>betweenness_centrality<a class="headerlink" href="#betweenness-centrality" title="Permalink to this headline">¶</a></h1>
<dl class="function">
<dt id="networkx.algorithms.centrality.betweenness_centrality">
<tt class="descname">betweenness_centrality</tt><big>(</big><em>G</em>, <em>k=None</em>, <em>normalized=True</em>, <em>weight=None</em>, <em>endpoints=False</em>, <em>seed=None</em><big>)</big><a class="headerlink" href="#networkx.algorithms.centrality.betweenness_centrality" title="Permalink to this definition">¶</a></dt>
<dd><p>Compute the shortest-path betweenness centrality for nodes.</p>
<p>Betweenness centrality of a node <span class="math">v</span> is the sum of the
fraction of all-pairs shortest paths that pass through <span class="math">v</span>:</p>
<div class="math">
<p><span class="math">c_B(v) =\sum_{s,t \in V} \frac{\sigma(s, t|v)}{\sigma(s, t)}</span></p>
</div><p>where <span class="math">V</span> is the set of nodes, <span class="math">\sigma(s, t)</span> is the number of 
shortest <span class="math">(s, t)</span>-paths,  and <span class="math">\sigma(s, t|v)</span> is the number of those 
paths  passing through some  node <span class="math">v</span> other than <span class="math">s, t</span>. 
If <span class="math">s = t</span>, <span class="math">\sigma(s, t) = 1</span>, and if <span class="math">v \in {s, t}</span>,  
<span class="math">\sigma(s, t|v) = 0</span> <a class="reference internal" href="#r155">[R155]</a>.</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Parameters :</th><td class="field-body"><p class="first"><strong>G</strong> : graph</p>
<blockquote>
<div><p>A NetworkX graph</p>
</div></blockquote>
<p><strong>k</strong> : int, optional (default=None)</p>
<blockquote>
<div><p>If k is not None use k node samples to estimate betweenness.
The value of k &lt;= n where n is the number of nodes in the graph.
Higher values give better approximation.</p>
</div></blockquote>
<p><strong>normalized</strong> : bool, optional</p>
<blockquote>
<div><p>If True the betweenness values are normalized by <span class="math">2/((n-1)(n-2))</span> 
for graphs, and <span class="math">1/((n-1)(n-2))</span> for directed graphs where <span class="math">n</span> 
is the number of nodes in G.</p>
</div></blockquote>
<p><strong>weight</strong> : None or string, optional</p>
<blockquote>
<div><p>If None, all edge weights are considered equal.
Otherwise holds the name of the edge attribute used as weight.</p>
</div></blockquote>
<p><strong>endpoints</strong> : bool, optional</p>
<blockquote>
<div><p>If True include the endpoints in the shortest path counts.</p>
</div></blockquote>
</td>
</tr>
<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first"><strong>nodes</strong> : dictionary</p>
<blockquote class="last">
<div><p>Dictionary of nodes with betweenness centrality as the value.</p>
</div></blockquote>
</td>
</tr>
</tbody>
</table>
<div class="admonition-see-also admonition seealso">
<p class="first admonition-title">See also</p>
<p class="last"><a class="reference internal" href="networkx.algorithms.centrality.edge_betweenness_centrality.html#networkx.algorithms.centrality.edge_betweenness_centrality" title="networkx.algorithms.centrality.edge_betweenness_centrality"><tt class="xref py py-obj docutils literal"><span class="pre">edge_betweenness_centrality</span></tt></a>, <a class="reference internal" href="networkx.algorithms.centrality.load_centrality.html#networkx.algorithms.centrality.load_centrality" title="networkx.algorithms.centrality.load_centrality"><tt class="xref py py-obj docutils literal"><span class="pre">load_centrality</span></tt></a></p>
</div>
<p class="rubric">Notes</p>
<p>The algorithm is from Ulrik Brandes <a class="reference internal" href="#r154">[R154]</a>.
See <a class="reference internal" href="#r155">[R155]</a> for details on algorithms for variations and related metrics.</p>
<p>For approximate betweenness calculations set k=#samples to use 
k nodes (&#8220;pivots&#8221;) to estimate the betweenness values. For an estimate
of the number of pivots needed see <a class="reference internal" href="#r156">[R156]</a>.</p>
<p>For weighted graphs the edge weights must be greater than zero.
Zero edge weights can produce an infinite number of equal length 
paths between pairs of nodes.</p>
<p class="rubric">References</p>
<table class="docutils citation" frame="void" id="r154" rules="none">
<colgroup><col class="label" /><col /></colgroup>
<tbody valign="top">
<tr><td class="label">[R154]</td><td><em>(<a class="fn-backref" href="#id2">1</a>, <a class="fn-backref" href="#id5">2</a>)</em> A Faster Algorithm for Betweenness Centrality.
Ulrik Brandes, 
Journal of Mathematical Sociology 25(2):163-177, 2001.
<a class="reference external" href="http://www.inf.uni-konstanz.de/algo/publications/b-fabc-01.pdf">http://www.inf.uni-konstanz.de/algo/publications/b-fabc-01.pdf</a></td></tr>
</tbody>
</table>
<table class="docutils citation" frame="void" id="r155" rules="none">
<colgroup><col class="label" /><col /></colgroup>
<tbody valign="top">
<tr><td class="label">[R155]</td><td><em>(<a class="fn-backref" href="#id1">1</a>, <a class="fn-backref" href="#id3">2</a>, <a class="fn-backref" href="#id6">3</a>)</em> Ulrik Brandes: On Variants of Shortest-Path Betweenness 
Centrality and their Generic Computation. 
Social Networks 30(2):136-145, 2008.
<a class="reference external" href="http://www.inf.uni-konstanz.de/algo/publications/b-vspbc-08.pdf">http://www.inf.uni-konstanz.de/algo/publications/b-vspbc-08.pdf</a></td></tr>
</tbody>
</table>
<table class="docutils citation" frame="void" id="r156" rules="none">
<colgroup><col class="label" /><col /></colgroup>
<tbody valign="top">
<tr><td class="label">[R156]</td><td><em>(<a class="fn-backref" href="#id4">1</a>, <a class="fn-backref" href="#id7">2</a>)</em> Ulrik Brandes and Christian Pich: 
Centrality Estimation in Large Networks. 
International Journal of Bifurcation and Chaos 17(7):2303-2318, 2007.
<a class="reference external" href="http://www.inf.uni-konstanz.de/algo/publications/bp-celn-06.pdf">http://www.inf.uni-konstanz.de/algo/publications/bp-celn-06.pdf</a></td></tr>
</tbody>
</table>
</dd></dl>

</div>


          </div>
        </div>
      </div>
      <div class="clearer"></div>
    </div>
    <div class="related">
      <h3>Navigation</h3>
      <ul>
        <li class="right" style="margin-right: 10px">
          <a href="../../genindex.html" title="General Index"
             >index</a></li>
        <li class="right" >
          <a href="../../py-modindex.html" title="Python Module Index"
             >modules</a> |</li>
        <li class="right" >
          <a href="networkx.algorithms.centrality.edge_betweenness_centrality.html" title="edge_betweenness_centrality"
             >next</a> |</li>
        <li class="right" >
          <a href="networkx.algorithms.centrality.closeness_centrality.html" title="closeness_centrality"
             >previous</a> |</li>
        <li><a href="http://networkx.github.com/">NetworkX Home </a> |&nbsp;</li>
        <li><a href="http://networkx.github.com/documentation.html">Documentation </a>|&nbsp;</li>
        <li><a href="http://networkx.github.com/download.html">Download </a> |&nbsp;</li>
        <li><a href="http://github.com/networkx">Developer (Github)</a></li>



          <li><a href="../index.html" >Reference</a> &raquo;</li>
          <li><a href="../pdf_reference.html" >Reference</a> &raquo;</li>
          <li><a href="../algorithms.html" >Algorithms</a> &raquo;</li>
          <li><a href="../algorithms.centrality.html" >Centrality</a> &raquo;</li> 
      </ul>
    </div>
    <div class="footer">
        &copy; Copyright 2013, NetworkX Developers.
      Last updated on Oct 23, 2013.
      Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
    </div>
  </body>
</html>