Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/manual/algorithms/centralities.html
Original file line number Diff line number Diff line change
Expand Up @@ -600,7 +600,7 @@ <h1 class="title"><code>pathpy.algorithms.centralities</code> module</h1>

Parameters
----------
network: Netwokr
network: Network
alpha: float
damping factor
max_iter: int
Expand Down Expand Up @@ -987,7 +987,7 @@ <h2 id="returns">Returns</h2>
<section class="desc"><p>Calculates the PageRank of nodes based on a power iteration.</p>
<h2 id="parameters">Parameters</h2>
<dl>
<dt><strong><code>network</code></strong> :&ensp;<code>Netwokr</code></dt>
<dt><strong><code>network</code></strong> :&ensp;<code>Network</code></dt>
<dd>&nbsp;</dd>
<dt><strong><code>alpha</code></strong> :&ensp;<code>float</code></dt>
<dd>damping factor</dd>
Expand All @@ -1008,7 +1008,7 @@ <h2 id="returns">Returns</h2>

Parameters
----------
network: Netwokr
network: Network
alpha: float
damping factor
max_iter: int
Expand Down
2 changes: 1 addition & 1 deletion pathpy/algorithms/centralities.py
Original file line number Diff line number Diff line change
Expand Up @@ -575,7 +575,7 @@ def pagerank(network, alpha=0.85, max_iter=100, tol=1.0e-6, weighted=False):

Parameters
----------
network: Netwokr
network: Network
alpha: float
damping factor
max_iter: int
Expand Down