Skip to content

Leverage Neo4j Graph Data Science library to explore graph algorithms for analytics and feature engineering

Notifications You must be signed in to change notification settings

neo4j-graph-examples/graph-data-science

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

34 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

gds logo

Graph Data Science Graph Example

Description: Leverage Neo4j Graph Data Science library to explore graph algorithms for analytics and feature engineering.

Nodes 2642 Relationships 16747

model
Figure 1. Model
example
Figure 2. Example
Example Query:
MATCH (c:Person{name:$name})-[r:INTERACTS]->(other)
  RETURN other.name as person

Setup

This is for Neo4j version: 3.5,4.0

Required plugins: gds

Load graph data via the following:

Dump file: data/graph-data-science-40.dump

  • Drop the file into the Files section of a project in Neo4j Desktop. Then choose the option to Create new DBMS from dump option from the file options.

  • Use the neo4j-admin tool to load data from the command line with the command below.

bin/neo4j-admin load --from data/graph-data-science-40.dump [--database "database"]

Code Examples

Feedback

Feel free to submit issues or pull requests for improvement on this repository.