Skip to content

Commit bf9e0a6

Browse files
paulitapbdschult
authored andcommitted
pre-commit + fix code
1 parent f60e30f commit bf9e0a6

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

Diff for: content/algorithms/index.md

+2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77

88
+++
99

10+
+++
11+
1012
# Algorithms
1113

1214
A closer look at some of the algorithms and network analysis techniques

Diff for: content/algorithms/karate_club/karate_club.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -213,11 +213,11 @@ fig.set_size_inches(10, 10)
213213
214214
plt.subplot(221)
215215
216-
nx.draw(K1_naive, with_labels=True, node_color="c", nodelist=solitary1)
216+
nx.draw(K1_naive, with_labels=True, node_color="c", nodelist=K1_not_isolated)
217217
plt.title("Group Administrator", fontweight="bold")
218218
219219
plt.subplot(222)
220-
nx.draw(K2_naive, with_labels=True, nodelist=solitary2, node_color="m")
220+
nx.draw(K2_naive, with_labels=True, nodelist=K2_not_isolated, node_color="m")
221221
plt.title("Group Instructor", fontweight="bold")
222222
223223
plt.show()

Diff for: content/generators/index.md

+2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77

88
+++
99

10+
+++
11+
1012
# Graph Generators
1113

1214
A closer look at the functions provided by NetworkX to create interesting

0 commit comments

Comments
 (0)