diff options
author | Ivan Laković <laky55555@gmail.com> | 2018-02-07 01:15:44 +0100 |
---|---|---|
committer | Dan Schult <dschult@colgate.edu> | 2018-02-06 19:15:44 -0500 |
commit | 09eedd2a9578934a5dfc8757ca01873fd4ea17b6 (patch) | |
tree | 87bd35b9aaca8c218376d97ed19e8655a75d0d76 | |
parent | 5f51a96beb9d1f2e0c95e7796e1467f0bcae656c (diff) | |
download | networkx-09eedd2a9578934a5dfc8757ca01873fd4ea17b6.tar.gz |
Fix documentation typo (#2866)
-rw-r--r-- | networkx/algorithms/bipartite/cluster.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/networkx/algorithms/bipartite/cluster.py b/networkx/algorithms/bipartite/cluster.py index 282a8129..f29bd151 100644 --- a/networkx/algorithms/bipartite/cluster.py +++ b/networkx/algorithms/bipartite/cluster.py @@ -41,7 +41,7 @@ def latapy_clustering(G, nodes=None, mode='dot'): .. math:: - c_u = \frac{\sum_{v \in N(N(v))} c_{uv} }{|N(N(u))|} + c_u = \frac{\sum_{v \in N(N(u))} c_{uv} }{|N(N(u))|} where `N(N(u))` are the second order neighbors of `u` in `G` excluding `u`, and `c_{uv}` is the pairwise clustering coefficient between nodes |