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.

cjsxz
Node Link
since ‎06-03-2021
‎06-01-2022

User Statistics

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

User Activity

Following the Citation network example in the book Neo4j_Graph_Algorithms.. The dataset has been loaded to the newly created database ml1 : see the screenshot Then try to run the code from the terminal graph = Graph("bolt://localhost:7687", auth=("n...
Execute the code: CALL gds.alpha.betweenness.sampled.stream({ nodeProjection: "User", relationshipProjection: "FOLLOWS", strategy:"degree" }) YIELD nodeId, centrality RETURN gds.util.asNode(nodeId).id AS user, centrality ORDER BY centrality DESC; Err...
A toy example here trying to see if command line access to database graph works: Opened the neo4j browser for the default database Movie from the neo4j Desktop. In the Terminal, entered: from py2neo import Graph graph = Graph("bolt://localhost:7687")...