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.

SandroMartens
Node Link
since ‎06-26-2021
‎06-01-2022

User Statistics

  • 5 Posts
  • 1 Solutions
  • 6 Kudos given
  • 0 Kudos received

User Activity

I want to calculate a page rank on my graph. Call gds.pageRank.stream({ nodeProjection: "Nutzer", relationshipProjection: "ANTWORTETE_AUF", writeProperty: "pageRank", scaler: "log" } ) but I get the following error: Failed to inv...
So I want to compute the Personalized PageRank of my nodes. The normal PageRank runs in ~1s or so. My query for PPR runs a few minutes (when i terminate it) My Code: match (n:Nutzer {mainAutor: True}) Call gds.pageRank.write({ nodeProjection: "Nutz...
Hi, I want to import a csv table with tweets from twitter. But I get the error message: Failed to invoke procedure apoc.load.csv: Caused by: java.lang.ArrayIndexOutOfBoundsException: Index 4 out of bounds for length 4 My Code is: CALL apoc.load.cs...