summaryrefslogtreecommitdiff
path: root/examples/algorithms/plot_davis_club.py
diff options
context:
space:
mode:
Diffstat (limited to 'examples/algorithms/plot_davis_club.py')
-rw-r--r--examples/algorithms/plot_davis_club.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/algorithms/plot_davis_club.py b/examples/algorithms/plot_davis_club.py
index 0029d55c..3bd37b6e 100644
--- a/examples/algorithms/plot_davis_club.py
+++ b/examples/algorithms/plot_davis_club.py
@@ -30,7 +30,7 @@ print("#Friends, Member")
for w in women:
print(f"{W.degree(w)} {w}")
-# project bipartite graph onto women nodes keeping number of co-occurence
+# project bipartite graph onto women nodes keeping number of co-occurrence
# the degree computed is weighted and counts the total number of shared contacts
W = bipartite.weighted_projected_graph(G, women)
print()