SlideShare a Scribd company logo
Neo4j, Inc. All rights reserved 2021
Neo4j, Inc. All rights reserved 2021
1
Herzlich Willkommen!
Einstieg in Neo4j Graph Data
Science
Alexander.Katzdobler@neo4j.com
andrew.frei@neo4j.com
Neo4j, Inc. All rights reserved 2021
2
Organisatorisches
○ Fragen während des Webinars werden zum Schluss behandelt und können
gerne währenddessen per Chat gestellt werden.
○ Informationen zum Webinar werden im Nachgang an alle Teilnehmer
versendet
Neo4j, Inc. All rights reserved 2021
7/10
20/25
7/10
Top Life Science Firms
Top Financial Firms
Top Software Vendors
Anyway You Like It
Neo4j - The Graph Company
The Industry’s Largest Dedicated Investment in Graphs
3
Creator of the Property
Graph and Cypher language
at the core of the GQL ISO
project
Thousands of Customers
World-Wide
HQ in Silicon Valley, offices
include London, Munich,
Paris & Malmo
Industry Leaders use Neo4j
On-Prem
DB-as-a-Service
In the Cloud
Neo4j, Inc. All rights reserved 2021
Highly Valuable Connected Data Use Cases
Drive Enterprise Adoption
Network &
IT Operations
Fraud
Detection
Identity & Access
Management
Knowledge
Graph
Master Data
Management
Real-Time
Recommendations
4
Neo4j, Inc. All rights reserved 2021
Graph is the Fastest Growing DBMS
Category, Neo4j is the Leading Player
FASTEST GROWING CATEGORY MOST POPULAR WITH DEVELOPERS
STRONGEST COMMUNITY
Developers
LinkedIn Skills
41k+
members with
220k+
Meetups
72k+
Members globally
5
Neo4j, Inc. All rights reserved 2021
CAR
DRIVES
name: “Dan”
born: May 29, 1970
twitter: “@dan”
name: “Ann”
born: Dec 5, 1975
since:
Jan 10, 2011
brand: “Volvo”
model: “V70”
Latitude: 37.5629900°
Longitude: -122.3255300°
Nodes
• Can have Labels to classify nodes
• Labels have native indexes
Relationships
• Relate nodes by type and direction
Properties
• Attributes of Nodes & Relationships
• Stored as Name/Value pairs
• Can have indexes and composite indexes
• Visibility security by user/role
Neo4j Invented the Labeled Property Graph Model
MARRIED TO
LIVES WITH
O
W
N
S
PERSON PERSON
6
Neo4j, Inc. All rights reserved 2021
7
Graph Databases Unlock Data-context for
Richer Insights, Better Decisions, and Faster Innovation
Shifting from Data-Driven to Intelligence-Driven
Bought
B
ou
gh
t
V
i
e
w
e
d
R
e
t
u
r
n
e
d
Bought
K
n
o
w
s
Knows
Knows
K
n
o
w
s
Pl
ay
s
Lives_in
In_sport
Likes
F
a
n
_
o
f
Plays_for
People
E.g., Employees, Customers,
Suppliers, Partners, Influencers
Transactions
E.g., Risk management, Supply chain,
Payments
Knowledge
E.g. Enterprise content, Knowledgebase,
eCommerce content
Neo4j, Inc. All rights reserved 2021
Which of the colored nodes would be considered the most
‘important'?
D
A
B
E
H
G
F
C
I
J
K
L
M N
8
Neo4j, Inc. All rights reserved 2021
Which of the colored nodes would be considered the most
‘important'?
D D has the highest valence
This is the most connected individual in the network. If importance is how well you are personally known, you pick D.
Node G has the highest closeness centrality (0.52).
Information will disperse through the network more quickly through this individual. If you need to get a message out rapidly, choose them.
G
Node I has the highest betweenness centrality (0.59).
This person is an efficient connector of other people. Risk of disruption is higher if you lose this individual.
I
D
A
B
E
H
G
F
C
I
J
K
L
M N
9
Neo4j, Inc. All rights reserved 2021
What is Graph data science?
Graph Data Science is a science-driven
approach to gain knowledge from the
relationships and structures in data, typically
to power predictions.
Data scientists use
relationships to answer
questions.
Neo4j, Inc. All rights reserved 2021
Why Graph data science?
Relationships and network structures are
highly predictive and underutilized – and
already in your data.
● Relationships are the strongest predictor of
behavior - James Fowler (“Connected”)
Productionize more accurate
and predictive models.
Graphs are a natural way to store and use
this predictive information, but different than
what you’re doing today.
Neo4j, Inc. All rights reserved 2021
Neo4j for Graph Data Science
Neo4j Graph Data
Science Library
Scalable Graph
Algorithms & Analytics
Workspace
Native Graph
Creation & Persistence
Neo4j
Database
Visual Graph
Exploration
& Prototyping
Neo4j
Bloom
Practical way to harness
the natural power of
relationships and network
structures to infer behavior
Automated transformations
with an integrated database
built to store and protect
relationships
Explore results visually,
quickly prototype and
collaborate with different
groups.
12
Neo4j, Inc. All rights reserved 2021
13
Graphs & Data Science
Knowledge Graphs
Graph Algorithms
Graph Native
Machine Learning
Find the patterns you’re
looking for in connected data
Use unsupervised machine
learning techniques to
identify associations,
anomalies, and trends.
Use embeddings to learn the
features in your graph that
you don’t even know are
important yet.
Train in-graph supervise ML
models to predict links,
labels, and missing data.
Neo4j, Inc. All rights reserved 2021
When do I need Graph Algorithms?
Query (e.g. Cypher/Python)
Real-time, local decisioning
and pattern matching
Graph Algorithms
Global analysis and iterations
You know what you’re looking for
and making a decision
You’re learning the overall structure of
a network, updating data, and
predicting
Local Patterns Global Computation
Neo4j, Inc. All rights reserved 2021
Robust Graph Algorithms
● Compute connectivity metrics and learn the topology of your graph
● Highly parallelized and scale to 10’s of billions of nodes
15
The Neo4j GDS Library
Mutable In-Memory
Workspace
Computational Graph
Native Graph Store
Efficient & Flexible Analytics
Workspace
● Automatically reshapes transactional graphs
into an in-memory analytics graph
● Optimized for analytics with global traversals
and aggregation
● Create workflows and layer algorithms
Neo4j, Inc. All rights reserved 2021
16
More, Better, Faster Algorithms
Pathfinding &
Search
• Shortest Path
• Single-Source Shortest Path
• All Pairs Shortest Path
• A* Shortest Path
• Yen’s K Shortest Path
• Minimum Weight Spanning Tree
• K-Spanning Tree (MST)
• Random Walk
• Breadth & Depth First Search
Centrality &
Importance
• Degree Centrality
• Closeness Centrality
• Harmonic Centrality
• Betweenness Centrality & Approx.
• PageRank
• Personalized PageRank
• ArticleRank
• Eigenvector Centrality
• Hyperlink Induced Topic Search (HITS)
• Influence Maximization (Greedy, CELF)
Community
Detection
• Triangle Count
• Local Clustering Coefficient
• Connected Components (Union Find)
• Strongly Connected Components
• Label Propagation
• Louvain Modularity
• K-1 Coloring
• Modularity Optimization
• Speaker Listener Label Propagation
Supervised
Machine Learning
• Node Classification
• Link Prediction
… and more!
Heuristic Link
Prediction
• Adamic Adar
• Common Neighbors
• Preferential Attachment
• Resource Allocations
• Same Community
• Total Neighbors
Similarity
• Node Similarity
• K-Nearest Neighbors (KNN)
• Jaccard Similarity
• Cosine Similarity
• Pearson Similarity
• Euclidean Distance
• Approximate Nearest Neighbors (ANN)
Graph
Embeddings
• Node2Vec
• FastRP
• FastRPExtended
• GraphSAGE
• Synthetic Graph Generation
• Scale Properties
• Collapse Paths
• One Hot Encoding
• Split Relationships
• Graph Export
• Pregel API (write your own algos)
Neo4j, Inc. All rights reserved 2021
Graph Algorithms for Drug Discovery
Identify drug mechanisms and
new targets based on network
structure
PageRank to identify essential
regulatory genes or drug
targets
Shortest path to link drug
targets to possible outcomes
or side effects
Node Similarity to find
structurally similar chemicals
17
Neo4j, Inc. All rights reserved 2021
What: Finds important nodes
based on their relationships
Why: Recommendations,
identifying influencers
Features:
- Tolerance
- Damping
18
Page Rank
Neo4j, Inc. All rights reserved 2021
19
Get started with Graph Data Science in Neo4j
Neo4j, Inc. All rights reserved 2021
20
Neo4j GDSL Download
Neo4j, Inc. All rights reserved 2021
21
Neo4j Desktop & Sandbox
Neo4j, Inc. All rights reserved 2021
22
Neo4j Sandbox - GDS Playground
Neo4j, Inc. All rights reserved 2021
23
Neo4j - Graph Algorithms Free Copy
Neo4j, Inc. All rights reserved 2021
24
Neo4j - Graph Data Science for Dummies Free Copy
Neo4j, Inc. All rights reserved 2021
25
Neo4j, Inc. All rights reserved 2021
26

More Related Content

What's hot (20)

PPTX
Transforming BT’s Infrastructure Management with Graph Technology
Neo4j
 
PDF
Introduction to Knowledge Graphs for Information Architects.pdf
Heather Hedden
 
PDF
Adobe Behance Scales to Millions of Users at Lower TCO with Neo4j
Neo4j
 
PPTX
Intro to Neo4j
Neo4j
 
PDF
Neo4j 4 Overview
Neo4j
 
PPTX
Mongodb Performance
Jack
 
PDF
Training Week: Build APIs with Neo4j GraphQL Library
Neo4j
 
PDF
Workshop - Neo4j Graph Data Science
Neo4j
 
PDF
1. 개방형 데이터 허브 핵심 기술 V2.pdf
ssuserde0b2d
 
PPTX
Knowledge Graph Introduction
Sören Auer
 
PDF
Knowledge Graphs and Graph Data Science: More Context, Better Predictions (Ne...
Neo4j
 
PPTX
Family tree of data – provenance and neo4j
M. David Allen
 
PPT
Neo4J : Introduction to Graph Database
Mindfire Solutions
 
PDF
Bertelsmann: BeTrend – Building a Trend Aggregation Machine.pdf
Neo4j
 
PDF
SQL Extensions to Support Streaming Data With Fabian Hueske | Current 2022
HostedbyConfluent
 
PDF
Kappa vs Lambda Architectures and Technology Comparison
Kai Wähner
 
PDF
Neo4j Graph Platform Overview, Kurt Freytag, Neo4j
Neo4j
 
PPT
Web Development In Oracle APEX
iWare Logic Technologies Pvt. Ltd.
 
PDF
Data lineage and observability with Marquez - subsurface 2020
Julien Le Dem
 
PDF
Importing Data into Neo4j quickly and easily - StackOverflow
Neo4j
 
Transforming BT’s Infrastructure Management with Graph Technology
Neo4j
 
Introduction to Knowledge Graphs for Information Architects.pdf
Heather Hedden
 
Adobe Behance Scales to Millions of Users at Lower TCO with Neo4j
Neo4j
 
Intro to Neo4j
Neo4j
 
Neo4j 4 Overview
Neo4j
 
Mongodb Performance
Jack
 
Training Week: Build APIs with Neo4j GraphQL Library
Neo4j
 
Workshop - Neo4j Graph Data Science
Neo4j
 
1. 개방형 데이터 허브 핵심 기술 V2.pdf
ssuserde0b2d
 
Knowledge Graph Introduction
Sören Auer
 
Knowledge Graphs and Graph Data Science: More Context, Better Predictions (Ne...
Neo4j
 
Family tree of data – provenance and neo4j
M. David Allen
 
Neo4J : Introduction to Graph Database
Mindfire Solutions
 
Bertelsmann: BeTrend – Building a Trend Aggregation Machine.pdf
Neo4j
 
SQL Extensions to Support Streaming Data With Fabian Hueske | Current 2022
HostedbyConfluent
 
Kappa vs Lambda Architectures and Technology Comparison
Kai Wähner
 
Neo4j Graph Platform Overview, Kurt Freytag, Neo4j
Neo4j
 
Web Development In Oracle APEX
iWare Logic Technologies Pvt. Ltd.
 
Data lineage and observability with Marquez - subsurface 2020
Julien Le Dem
 
Importing Data into Neo4j quickly and easily - StackOverflow
Neo4j
 

Similar to Einstieg in Neo4j Graph Data Science (20)

PDF
Graph Data Science with Neo4j: Nordics Webinar
Neo4j
 
PDF
Relationships Matter: Using Connected Data for Better Machine Learning
Neo4j
 
PDF
Graphs for Data Science and Machine Learning
Neo4j
 
PPTX
Using Connected Data and Graph Technology to Enhance Machine Learning and Art...
Neo4j
 
PDF
Neo4j – The Fastest Path to Scalable Real-Time Analytics
Neo4j
 
PDF
GraphSummit Toronto: Leveraging Graphs for AI and ML
Neo4j
 
PPTX
Get Started with the Most Advanced Edition Yet of Neo4j Graph Data Science
Neo4j
 
PDF
Graph Data Science: The Secret to Accelerating Innovation with AI/ML
Neo4j
 
PDF
Workshop Tel Aviv - Graph Data Science
Neo4j
 
PDF
La strada verso il successo con i database a grafo, la Graph Data Science e l...
Neo4j
 
PDF
Government GraphSummit: Leveraging Graphs for AI and ML
Neo4j
 
PDF
Introduction to Neo4j for the Emirates & Bahrain
Neo4j
 
PDF
Government GraphSummit: Optimizing the Supply Chain
Neo4j
 
PPTX
How Graph Data Science can turbocharge your Knowledge Graph
Neo4j
 
PDF
El camino hacia el éxito con las bases de datos de grafos, la ciencia de dato...
Neo4j
 
PDF
Are You Underestimating the Value Within Your Data? A conversation about grap...
Neo4j
 
PDF
The Neo4j Data Platform for Today & Tomorrow.pdf
Neo4j
 
PDF
Optimizing the Supply Chain with Knowledge Graphs, IoT and Digital Twins_Moor...
Neo4j
 
PDF
The Data Platform for Today's Intelligent Applications.pdf
Neo4j
 
PDF
Webinar - IA generativa e grafi Neo4j: RAG time!
Neo4j
 
Graph Data Science with Neo4j: Nordics Webinar
Neo4j
 
Relationships Matter: Using Connected Data for Better Machine Learning
Neo4j
 
Graphs for Data Science and Machine Learning
Neo4j
 
Using Connected Data and Graph Technology to Enhance Machine Learning and Art...
Neo4j
 
Neo4j – The Fastest Path to Scalable Real-Time Analytics
Neo4j
 
GraphSummit Toronto: Leveraging Graphs for AI and ML
Neo4j
 
Get Started with the Most Advanced Edition Yet of Neo4j Graph Data Science
Neo4j
 
Graph Data Science: The Secret to Accelerating Innovation with AI/ML
Neo4j
 
Workshop Tel Aviv - Graph Data Science
Neo4j
 
La strada verso il successo con i database a grafo, la Graph Data Science e l...
Neo4j
 
Government GraphSummit: Leveraging Graphs for AI and ML
Neo4j
 
Introduction to Neo4j for the Emirates & Bahrain
Neo4j
 
Government GraphSummit: Optimizing the Supply Chain
Neo4j
 
How Graph Data Science can turbocharge your Knowledge Graph
Neo4j
 
El camino hacia el éxito con las bases de datos de grafos, la ciencia de dato...
Neo4j
 
Are You Underestimating the Value Within Your Data? A conversation about grap...
Neo4j
 
The Neo4j Data Platform for Today & Tomorrow.pdf
Neo4j
 
Optimizing the Supply Chain with Knowledge Graphs, IoT and Digital Twins_Moor...
Neo4j
 
The Data Platform for Today's Intelligent Applications.pdf
Neo4j
 
Webinar - IA generativa e grafi Neo4j: RAG time!
Neo4j
 
Ad

More from Neo4j (20)

PDF
GraphSummit Singapore Master Deck - May 20, 2025
Neo4j
 
PPTX
Graphs & GraphRAG - Essential Ingredients for GenAI
Neo4j
 
PPTX
Neo4j Knowledge for Customer Experience.pptx
Neo4j
 
PPTX
GraphTalk New Zealand - The Art of The Possible.pptx
Neo4j
 
PDF
Neo4j: The Art of the Possible with Graph
Neo4j
 
PDF
Smarter Knowledge Graphs For Public Sector
Neo4j
 
PDF
GraphRAG and Knowledge Graphs Exploring AI's Future
Neo4j
 
PDF
Matinée GenAI & GraphRAG Paris - Décembre 24
Neo4j
 
PDF
ANZ Presentation: GraphSummit Melbourne 2024
Neo4j
 
PDF
Google Cloud Presentation GraphSummit Melbourne 2024: Building Generative AI ...
Neo4j
 
PDF
Telstra Presentation GraphSummit Melbourne: Optimising Business Outcomes with...
Neo4j
 
PDF
Hands-On GraphRAG Workshop: GraphSummit Melbourne 2024
Neo4j
 
PDF
Démonstration Digital Twin Building Wire Management
Neo4j
 
PDF
Swiss Life - Les graphes au service de la détection de fraude dans le domaine...
Neo4j
 
PDF
Démonstration Supply Chain - GraphTalk Paris
Neo4j
 
PDF
The Art of Possible - GraphTalk Paris Opening Session
Neo4j
 
PPTX
How Siemens bolstered supply chain resilience with graph-powered AI insights ...
Neo4j
 
PDF
Knowledge Graphs for AI-Ready Data and Enterprise Deployment - Gartner IT Sym...
Neo4j
 
PDF
Neo4j Graph Data Modelling Session - GraphTalk
Neo4j
 
PDF
Neo4j: The Art of Possible with Graph Technology
Neo4j
 
GraphSummit Singapore Master Deck - May 20, 2025
Neo4j
 
Graphs & GraphRAG - Essential Ingredients for GenAI
Neo4j
 
Neo4j Knowledge for Customer Experience.pptx
Neo4j
 
GraphTalk New Zealand - The Art of The Possible.pptx
Neo4j
 
Neo4j: The Art of the Possible with Graph
Neo4j
 
Smarter Knowledge Graphs For Public Sector
Neo4j
 
GraphRAG and Knowledge Graphs Exploring AI's Future
Neo4j
 
Matinée GenAI & GraphRAG Paris - Décembre 24
Neo4j
 
ANZ Presentation: GraphSummit Melbourne 2024
Neo4j
 
Google Cloud Presentation GraphSummit Melbourne 2024: Building Generative AI ...
Neo4j
 
Telstra Presentation GraphSummit Melbourne: Optimising Business Outcomes with...
Neo4j
 
Hands-On GraphRAG Workshop: GraphSummit Melbourne 2024
Neo4j
 
Démonstration Digital Twin Building Wire Management
Neo4j
 
Swiss Life - Les graphes au service de la détection de fraude dans le domaine...
Neo4j
 
Démonstration Supply Chain - GraphTalk Paris
Neo4j
 
The Art of Possible - GraphTalk Paris Opening Session
Neo4j
 
How Siemens bolstered supply chain resilience with graph-powered AI insights ...
Neo4j
 
Knowledge Graphs for AI-Ready Data and Enterprise Deployment - Gartner IT Sym...
Neo4j
 
Neo4j Graph Data Modelling Session - GraphTalk
Neo4j
 
Neo4j: The Art of Possible with Graph Technology
Neo4j
 
Ad

Recently uploaded (20)

PDF
HiHelloHR – Simplify HR Operations for Modern Workplaces
HiHelloHR
 
PDF
Automate Cybersecurity Tasks with Python
VICTOR MAESTRE RAMIREZ
 
PDF
Efficient, Automated Claims Processing Software for Insurers
Insurance Tech Services
 
PPTX
Platform for Enterprise Solution - Java EE5
abhishekoza1981
 
PDF
Mobile CMMS Solutions Empowering the Frontline Workforce
CryotosCMMSSoftware
 
PDF
Powering GIS with FME and VertiGIS - Peak of Data & AI 2025
Safe Software
 
PPTX
3uTools Full Crack Free Version Download [Latest] 2025
muhammadgurbazkhan
 
PDF
Unlock Efficiency with Insurance Policy Administration Systems
Insurance Tech Services
 
PDF
vMix Pro 28.0.0.42 Download vMix Registration key Bundle
kulindacore
 
PPTX
Tally software_Introduction_Presentation
AditiBansal54083
 
PDF
Capcut Pro Crack For PC Latest Version {Fully Unlocked} 2025
hashhshs786
 
PPTX
Tally_Basic_Operations_Presentation.pptx
AditiBansal54083
 
PPTX
Agentic Automation Journey Session 1/5: Context Grounding and Autopilot for E...
klpathrudu
 
PDF
GetOnCRM Speeds Up Agentforce 3 Deployment for Enterprise AI Wins.pdf
GetOnCRM Solutions
 
PPTX
Comprehensive Guide: Shoviv Exchange to Office 365 Migration Tool 2025
Shoviv Software
 
PPTX
Migrating Millions of Users with Debezium, Apache Kafka, and an Acyclic Synch...
MD Sayem Ahmed
 
PDF
Understanding the Need for Systemic Change in Open Source Through Intersectio...
Imma Valls Bernaus
 
PDF
Beyond Binaries: Understanding Diversity and Allyship in a Global Workplace -...
Imma Valls Bernaus
 
DOCX
Import Data Form Excel to Tally Services
Tally xperts
 
PPTX
An Introduction to ZAP by Checkmarx - Official Version
Simon Bennetts
 
HiHelloHR – Simplify HR Operations for Modern Workplaces
HiHelloHR
 
Automate Cybersecurity Tasks with Python
VICTOR MAESTRE RAMIREZ
 
Efficient, Automated Claims Processing Software for Insurers
Insurance Tech Services
 
Platform for Enterprise Solution - Java EE5
abhishekoza1981
 
Mobile CMMS Solutions Empowering the Frontline Workforce
CryotosCMMSSoftware
 
Powering GIS with FME and VertiGIS - Peak of Data & AI 2025
Safe Software
 
3uTools Full Crack Free Version Download [Latest] 2025
muhammadgurbazkhan
 
Unlock Efficiency with Insurance Policy Administration Systems
Insurance Tech Services
 
vMix Pro 28.0.0.42 Download vMix Registration key Bundle
kulindacore
 
Tally software_Introduction_Presentation
AditiBansal54083
 
Capcut Pro Crack For PC Latest Version {Fully Unlocked} 2025
hashhshs786
 
Tally_Basic_Operations_Presentation.pptx
AditiBansal54083
 
Agentic Automation Journey Session 1/5: Context Grounding and Autopilot for E...
klpathrudu
 
GetOnCRM Speeds Up Agentforce 3 Deployment for Enterprise AI Wins.pdf
GetOnCRM Solutions
 
Comprehensive Guide: Shoviv Exchange to Office 365 Migration Tool 2025
Shoviv Software
 
Migrating Millions of Users with Debezium, Apache Kafka, and an Acyclic Synch...
MD Sayem Ahmed
 
Understanding the Need for Systemic Change in Open Source Through Intersectio...
Imma Valls Bernaus
 
Beyond Binaries: Understanding Diversity and Allyship in a Global Workplace -...
Imma Valls Bernaus
 
Import Data Form Excel to Tally Services
Tally xperts
 
An Introduction to ZAP by Checkmarx - Official Version
Simon Bennetts
 

Einstieg in Neo4j Graph Data Science

  • 1. Neo4j, Inc. All rights reserved 2021 Neo4j, Inc. All rights reserved 2021 1 Herzlich Willkommen! Einstieg in Neo4j Graph Data Science [email protected] [email protected]
  • 2. Neo4j, Inc. All rights reserved 2021 2 Organisatorisches ○ Fragen während des Webinars werden zum Schluss behandelt und können gerne währenddessen per Chat gestellt werden. ○ Informationen zum Webinar werden im Nachgang an alle Teilnehmer versendet
  • 3. Neo4j, Inc. All rights reserved 2021 7/10 20/25 7/10 Top Life Science Firms Top Financial Firms Top Software Vendors Anyway You Like It Neo4j - The Graph Company The Industry’s Largest Dedicated Investment in Graphs 3 Creator of the Property Graph and Cypher language at the core of the GQL ISO project Thousands of Customers World-Wide HQ in Silicon Valley, offices include London, Munich, Paris & Malmo Industry Leaders use Neo4j On-Prem DB-as-a-Service In the Cloud
  • 4. Neo4j, Inc. All rights reserved 2021 Highly Valuable Connected Data Use Cases Drive Enterprise Adoption Network & IT Operations Fraud Detection Identity & Access Management Knowledge Graph Master Data Management Real-Time Recommendations 4
  • 5. Neo4j, Inc. All rights reserved 2021 Graph is the Fastest Growing DBMS Category, Neo4j is the Leading Player FASTEST GROWING CATEGORY MOST POPULAR WITH DEVELOPERS STRONGEST COMMUNITY Developers LinkedIn Skills 41k+ members with 220k+ Meetups 72k+ Members globally 5
  • 6. Neo4j, Inc. All rights reserved 2021 CAR DRIVES name: “Dan” born: May 29, 1970 twitter: “@dan” name: “Ann” born: Dec 5, 1975 since: Jan 10, 2011 brand: “Volvo” model: “V70” Latitude: 37.5629900° Longitude: -122.3255300° Nodes • Can have Labels to classify nodes • Labels have native indexes Relationships • Relate nodes by type and direction Properties • Attributes of Nodes & Relationships • Stored as Name/Value pairs • Can have indexes and composite indexes • Visibility security by user/role Neo4j Invented the Labeled Property Graph Model MARRIED TO LIVES WITH O W N S PERSON PERSON 6
  • 7. Neo4j, Inc. All rights reserved 2021 7 Graph Databases Unlock Data-context for Richer Insights, Better Decisions, and Faster Innovation Shifting from Data-Driven to Intelligence-Driven Bought B ou gh t V i e w e d R e t u r n e d Bought K n o w s Knows Knows K n o w s Pl ay s Lives_in In_sport Likes F a n _ o f Plays_for People E.g., Employees, Customers, Suppliers, Partners, Influencers Transactions E.g., Risk management, Supply chain, Payments Knowledge E.g. Enterprise content, Knowledgebase, eCommerce content
  • 8. Neo4j, Inc. All rights reserved 2021 Which of the colored nodes would be considered the most ‘important'? D A B E H G F C I J K L M N 8
  • 9. Neo4j, Inc. All rights reserved 2021 Which of the colored nodes would be considered the most ‘important'? D D has the highest valence This is the most connected individual in the network. If importance is how well you are personally known, you pick D. Node G has the highest closeness centrality (0.52). Information will disperse through the network more quickly through this individual. If you need to get a message out rapidly, choose them. G Node I has the highest betweenness centrality (0.59). This person is an efficient connector of other people. Risk of disruption is higher if you lose this individual. I D A B E H G F C I J K L M N 9
  • 10. Neo4j, Inc. All rights reserved 2021 What is Graph data science? Graph Data Science is a science-driven approach to gain knowledge from the relationships and structures in data, typically to power predictions. Data scientists use relationships to answer questions.
  • 11. Neo4j, Inc. All rights reserved 2021 Why Graph data science? Relationships and network structures are highly predictive and underutilized – and already in your data. ● Relationships are the strongest predictor of behavior - James Fowler (“Connected”) Productionize more accurate and predictive models. Graphs are a natural way to store and use this predictive information, but different than what you’re doing today.
  • 12. Neo4j, Inc. All rights reserved 2021 Neo4j for Graph Data Science Neo4j Graph Data Science Library Scalable Graph Algorithms & Analytics Workspace Native Graph Creation & Persistence Neo4j Database Visual Graph Exploration & Prototyping Neo4j Bloom Practical way to harness the natural power of relationships and network structures to infer behavior Automated transformations with an integrated database built to store and protect relationships Explore results visually, quickly prototype and collaborate with different groups. 12
  • 13. Neo4j, Inc. All rights reserved 2021 13 Graphs & Data Science Knowledge Graphs Graph Algorithms Graph Native Machine Learning Find the patterns you’re looking for in connected data Use unsupervised machine learning techniques to identify associations, anomalies, and trends. Use embeddings to learn the features in your graph that you don’t even know are important yet. Train in-graph supervise ML models to predict links, labels, and missing data.
  • 14. Neo4j, Inc. All rights reserved 2021 When do I need Graph Algorithms? Query (e.g. Cypher/Python) Real-time, local decisioning and pattern matching Graph Algorithms Global analysis and iterations You know what you’re looking for and making a decision You’re learning the overall structure of a network, updating data, and predicting Local Patterns Global Computation
  • 15. Neo4j, Inc. All rights reserved 2021 Robust Graph Algorithms ● Compute connectivity metrics and learn the topology of your graph ● Highly parallelized and scale to 10’s of billions of nodes 15 The Neo4j GDS Library Mutable In-Memory Workspace Computational Graph Native Graph Store Efficient & Flexible Analytics Workspace ● Automatically reshapes transactional graphs into an in-memory analytics graph ● Optimized for analytics with global traversals and aggregation ● Create workflows and layer algorithms
  • 16. Neo4j, Inc. All rights reserved 2021 16 More, Better, Faster Algorithms Pathfinding & Search • Shortest Path • Single-Source Shortest Path • All Pairs Shortest Path • A* Shortest Path • Yen’s K Shortest Path • Minimum Weight Spanning Tree • K-Spanning Tree (MST) • Random Walk • Breadth & Depth First Search Centrality & Importance • Degree Centrality • Closeness Centrality • Harmonic Centrality • Betweenness Centrality & Approx. • PageRank • Personalized PageRank • ArticleRank • Eigenvector Centrality • Hyperlink Induced Topic Search (HITS) • Influence Maximization (Greedy, CELF) Community Detection • Triangle Count • Local Clustering Coefficient • Connected Components (Union Find) • Strongly Connected Components • Label Propagation • Louvain Modularity • K-1 Coloring • Modularity Optimization • Speaker Listener Label Propagation Supervised Machine Learning • Node Classification • Link Prediction … and more! Heuristic Link Prediction • Adamic Adar • Common Neighbors • Preferential Attachment • Resource Allocations • Same Community • Total Neighbors Similarity • Node Similarity • K-Nearest Neighbors (KNN) • Jaccard Similarity • Cosine Similarity • Pearson Similarity • Euclidean Distance • Approximate Nearest Neighbors (ANN) Graph Embeddings • Node2Vec • FastRP • FastRPExtended • GraphSAGE • Synthetic Graph Generation • Scale Properties • Collapse Paths • One Hot Encoding • Split Relationships • Graph Export • Pregel API (write your own algos)
  • 17. Neo4j, Inc. All rights reserved 2021 Graph Algorithms for Drug Discovery Identify drug mechanisms and new targets based on network structure PageRank to identify essential regulatory genes or drug targets Shortest path to link drug targets to possible outcomes or side effects Node Similarity to find structurally similar chemicals 17
  • 18. Neo4j, Inc. All rights reserved 2021 What: Finds important nodes based on their relationships Why: Recommendations, identifying influencers Features: - Tolerance - Damping 18 Page Rank
  • 19. Neo4j, Inc. All rights reserved 2021 19 Get started with Graph Data Science in Neo4j
  • 20. Neo4j, Inc. All rights reserved 2021 20 Neo4j GDSL Download
  • 21. Neo4j, Inc. All rights reserved 2021 21 Neo4j Desktop & Sandbox
  • 22. Neo4j, Inc. All rights reserved 2021 22 Neo4j Sandbox - GDS Playground
  • 23. Neo4j, Inc. All rights reserved 2021 23 Neo4j - Graph Algorithms Free Copy
  • 24. Neo4j, Inc. All rights reserved 2021 24 Neo4j - Graph Data Science for Dummies Free Copy
  • 25. Neo4j, Inc. All rights reserved 2021 25
  • 26. Neo4j, Inc. All rights reserved 2021 26