Skip to content

Commit

Permalink
Revise "see also" references in bipartite to use short names.
Browse files Browse the repository at this point in the history
Addresses #596
  • Loading branch information
dschult committed Jul 20, 2011
1 parent 49a19eb commit e2d725c
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 25 deletions.
12 changes: 6 additions & 6 deletions networkx/algorithms/bipartite/centrality.py
Expand Up @@ -34,8 +34,8 @@ def degree_centrality(G, nodes):
--------
betweenness_centrality,
closeness_centrality,
networkx.algorithms.bipartite.basic.sets,
networkx.algorithms.bipartite.basic.is_bipartite
sets,
is_bipartite
Notes
-----
Expand Down Expand Up @@ -131,8 +131,8 @@ def betweenness_centrality(G, nodes):
--------
degree_centrality,
closeness_centrality,
networkx.algorithms.bipartite.basic.sets,
networkx.algorithms.bipartite.basic.is_bipartite
sets,
is_bipartite
Notes
-----
Expand Down Expand Up @@ -196,8 +196,8 @@ def closeness_centrality(G, nodes, normalized=True):
--------
betweenness_centrality,
degree_centrality
networkx.algorithms.bipartite.basic.sets,
networkx.algorithms.bipartite.basic.is_bipartite
sets,
is_bipartite
Notes
-----
Expand Down
4 changes: 2 additions & 2 deletions networkx/algorithms/bipartite/cluster.py
Expand Up @@ -89,7 +89,7 @@ def clustering(G, nodes=None, mode='dot'):
See Also
--------
networkx.algorithms.bipartite.cluster.average_clustering
average_clustering
References
----------
Expand Down Expand Up @@ -172,7 +172,7 @@ def average_clustering(G, nodes=None, mode='dot'):
See Also
--------
networkx.algorithms.bipartite.cluster.clustering
clustering
Notes
-----
Expand Down
32 changes: 16 additions & 16 deletions networkx/algorithms/bipartite/projection.py
Expand Up @@ -53,7 +53,7 @@ def projected_graph(B, nodes, multigraph=False):
[(1, 3)]
If nodes `a`, and `b` are connected through both nodes 1 and 2 then
building a multigraph results in two edges in the projection onto
building a multigraph results in two edges in the projection onto
[`a`,`b`]:
>>> B = nx.Graph()
Expand All @@ -77,9 +77,9 @@ def projected_graph(B, nodes, multigraph=False):
See Also
--------
networkx.algorithms.bipartite.basic.is_bipartite,
networkx.algorithms.bipartite.basic.is_bipartite_node_set,
networkx.algorithms.bipartite.basic.sets,
is_bipartite,
is_bipartite_node_set,
sets,
weighted_projected_graph,
collaboration_weighted_projected_graph,
overlap_weighted_projected_graph,
Expand Down Expand Up @@ -165,9 +165,9 @@ def weighted_projected_graph(B, nodes, ratio=False):
See Also
--------
networkx.algorithms.bipartite.basic.is_bipartite,
networkx.algorithms.bipartite.basic.is_bipartite_node_set,
networkx.algorithms.bipartite.basic.sets,
is_bipartite,
is_bipartite_node_set,
sets,
collaboration_weighted_projected_graph,
overlap_weighted_projected_graph,
generic_weighted_projected_graph
Expand Down Expand Up @@ -260,9 +260,9 @@ def collaboration_weighted_projected_graph(B, nodes):
See Also
--------
networkx.algorithms.bipartite.basic.is_bipartite,
networkx.algorithms.bipartite.basic.is_bipartite_node_set,
networkx.algorithms.bipartite.basic.sets,
is_bipartite,
is_bipartite_node_set,
sets,
weighted_projected_graph,
overlap_weighted_projected_graph,
generic_weighted_projected_graph,
Expand Down Expand Up @@ -353,9 +353,9 @@ def overlap_weighted_projected_graph(B, nodes, jaccard=True):
See Also
--------
networkx.algorithms.bipartite.basic.is_bipartite,
networkx.algorithms.bipartite.basic.is_bipartite_node_set,
networkx.algorithms.bipartite.basic.sets,
is_bipartite,
is_bipartite_node_set,
sets,
weighted_projected_graph,
collaboration_weighted_projected_graph,
generic_weighted_projected_graph,
Expand Down Expand Up @@ -448,9 +448,9 @@ def generic_weighted_projected_graph(B, nodes, weight_function=None):
See Also
--------
networkx.algorithms.bipartite.basic.is_bipartite,
networkx.algorithms.bipartite.basic.is_bipartite_node_set,
networkx.algorithms.bipartite.basic.sets,
is_bipartite,
is_bipartite_node_set,
sets,
weighted_projected_graph,
collaboration_weighted_projected_graph,
overlap_weighted_projected_graph,
Expand Down
2 changes: 1 addition & 1 deletion networkx/algorithms/bipartite/spectral.py
Expand Up @@ -46,7 +46,7 @@ def spectral_bipartivity(G, nodes=None, weight='weight'):
See Also
--------
networkx.algorithms.bipartite.basic.color
color
References
----------
Expand Down

0 comments on commit e2d725c

Please sign in to comment.