cancel
Showing results for 
Search instead for 
Did you mean: 

Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.

catherinepatino
Node
since ‎01-07-2021
‎06-01-2022

User Statistics

  • 7 Posts
  • 0 Solutions
  • 0 Kudos given
  • 0 Kudos received

User Activity

Hello, I'm trying to reduce a multigraph to a single graph in order to run a community detection algorithm on it. See my discussion here for more context. I solved the crashing/out of memory issues by using apoc.periodic.iterate to create the reduce...
I am trying to reduce a multigraph to a single graph using the following query for the cypher projection: CALL gds.graph.create.cypher( 'myGraph', 'MATCH (n:WebContent {componentId: 0} ) RETURN id(n) AS id, labels(n) as labels,', 'MATCH (...
The docs for the Louvain algorithm mention that when doing the seeded approach, "the algorithm will try to keep the seeded community IDs", which is very vague. And after doing some testing, I did confirm that seeded community IDs can be overwritten -...