WIP: test relationship with boundary

This commit is contained in:
2026-03-04 15:35:15 +01:00
parent b2edb8265b
commit 32dd37feea

View File

@@ -154,7 +154,6 @@ fig_graph.savefig("Pointcloud_graph.svg", format='svg')
fig = plt.figure(figsize=(15, 10))
axs = fig.subplots(2, 4)
i = 0
for ax in axs:
# TODO select corresponding centrality measure method
apply(g, seed, weight, convex_hull, ax, closeness, "Closeness")
@@ -162,10 +161,8 @@ for ax in axs:
apply(g, seed, weight, convex_hull, ax, betweeness, "Betweeness")
apply(g, seed, weight, convex_hull, ax, eigenvector, "Eigenvector")
apply(g, seed, weight, convex_hull, ax, katz, "Katz")
# TODO to implement
# - Laplacian
# - Leverage
# - Degree (seriously?)
i += 1
apply(g, seed, weight, convex_hull, ax, hits, "Hits")
apply(g, seed, weight, convex_hull, ax, leverage, "Leverage")
apply(g, seed, weight, convex_hull, ax, degree, "Degree")
fig.savefig(f"Comparison_Pointcloud.svg", format='svg')