Skip to content

Commit 721fa1e

Browse files
committed
fix: remove one of the subplots clustering
1 parent 325d99c commit 721fa1e

1 file changed

Lines changed: 0 additions & 7 deletions

File tree

src/neo4j-quickstart/quickstart.py

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -188,15 +188,11 @@ def extract_data(relationships, filter_query, depth=2):
188188
# -----------------------------------------------------------------------
189189

190190
# From Dataframes to Graphs (via Pydantic)
191-
graph = df_to_pydantic_models(sdsc_df, relationships)
192191
sdsc_graph = df_to_pydantic_models(sdsc_df, relationships)
193192
epfl_graph = df_to_pydantic_models(epfl_df, relationships)
194193

195194
# Full Graphs
196195

197-
output_path = Path("plots/graphs/graph_200_visualization.png")
198-
visualize_graph(graph, output_path)
199-
200196
output_path = Path("plots/graphs/sdsc_graph.png")
201197
visualize_graph(sdsc_graph, output_path)
202198

@@ -207,9 +203,6 @@ def extract_data(relationships, filter_query, depth=2):
207203

208204
output_dir = Path("plots/clusters/")
209205

210-
cluster_prefix_name = "200_first_nodes"
211-
visualize_clusters(graph, output_dir, cluster_prefix_name)
212-
213206
cluster_prefix_name = "sdsc"
214207
visualize_clusters(sdsc_graph, output_dir, cluster_prefix_name)
215208

0 commit comments

Comments
 (0)