summaryrefslogtreecommitdiff
path: root/networkx/algorithms/centrality/eigenvector.py
diff options
context:
space:
mode:
Diffstat (limited to 'networkx/algorithms/centrality/eigenvector.py')
-rw-r--r--networkx/algorithms/centrality/eigenvector.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/networkx/algorithms/centrality/eigenvector.py b/networkx/algorithms/centrality/eigenvector.py
index bd8a8fdc..f13dfdf2 100644
--- a/networkx/algorithms/centrality/eigenvector.py
+++ b/networkx/algorithms/centrality/eigenvector.py
@@ -72,8 +72,8 @@ def eigenvector_centrality(G, max_iter=100, tol=1.0e-6, nstart=None, weight=None
See Also
--------
eigenvector_centrality_numpy
- pagerank
- hits
+ :func:`~networkx.algorithms.link_analysis.pagerank_alg.pagerank`
+ :func:`~networkx.algorithms.link_analysis.hits_alg.hits`
Notes
-----
@@ -184,8 +184,8 @@ def eigenvector_centrality_numpy(G, weight=None, max_iter=50, tol=0):
See Also
--------
eigenvector_centrality
- pagerank
- hits
+ :func:`~networkx.algorithms.link_analysis.pagerank_alg.pagerank`
+ :func:`~networkx.algorithms.link_analysis.hits_alg.hits`
Notes
-----