WIP: compare sub set of graph with corrected values

This commit is contained in:
2026-03-14 17:33:33 +01:00
parent 4c87d4e7b0
commit 2ef0343338
3 changed files with 218 additions and 3 deletions

View File

@@ -157,7 +157,7 @@ convex_hull = centrality.convex_hull(g)
fig_graph, ax_graph = plt.subplots(figsize=(15, 12))
# draw without any centrality measure `vp`
vp = g.new_vertex_property("double")
plot.graph_plot(fig_graph, ax_graph, g, vp, convex_hull, f"Pointcloud (seed: {seed}")
plot.graph_plot(fig_graph, ax_graph, g, vp, convex_hull, f"Pointcloud (seed: {seed})")
fig_graph.savefig("Pointcloud_graph.svg", format='svg')
fig = plt.figure(figsize=(15, 12))