Getting Started with Neo4j and Gephi Tool

Neo4j Tool

Creating a new project Movies.
MATCH (m:Movie) where m.released > 2005 RETURN m
Graph
Table
Code
MATCH (p:Person)-[d:DIRECTED]-(m:Movie) where m.released > 2010 RETURN p,d,m
MATCH (m:Movie) RETURN m.title, m.released
Match (p:Person {name: 'Tom Hanks'}) RETURN p
MATCH (p:Person)-[r:ACTED_IN]->(m:movies) RETURN p,r,m
MATCH (tom:Person {name: "Tom Hanks"})-[:ACTED_IN]->(:Movie)<- [:ACTED_IN]-(p:Person) return p.name
MATCH ( p: Person )- [ relatedTo]-( m :Movie (title: "Cloud Atlas")) return p.name, type( relatedTo)

Gephi Tool

karate.gml dataset
Nodes and Edges are displayed when initially data is loaded.
Chosing the Force Atlas layout.
Representation based on Color Gradient.
Displaying the nodes in various sizes.
Average Degree value for all the nodes.
Fruchterman Reingold Layout
Yifan Hu Layout
Shortest path between tow nodes.

--

--

Get the Medium app

A button that says 'Download on the App Store', and if clicked it will lead you to the iOS App store
A button that says 'Get it on, Google Play', and if clicked it will lead you to the Google Play store