Skip to content

Files

Latest commit

1ee1b49 · Aug 17, 2020

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Aug 17, 2020
Aug 17, 2020
Aug 17, 2020

Chapter 10: Graph embedding: from graphs to matrices

Importing the Zachary's karate club data

  1. Download data/zkc.graph and copy it into the import folder of your graph
  2. Run the following Cypher query:
LOAD CSV FROM "file:///zkc.graph" AS row
FIELDTERMINATOR " "
MERGE (u:Node {id: toInteger(row[0])} )
MERGE (v:Node {id: toInteger(row[1])} )
CREATE (u)-[:LINK]->(v)