-
Notifications
You must be signed in to change notification settings - Fork 148
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1979 from moj-analytical-services/graph_definition
Add graph definition to docs
- Loading branch information
Showing
7 changed files
with
24 additions
and
0 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Linked data as graphs | ||
|
||
A graph is a collection of points (often referred to as nodes or vertices) connected by lines (often referred to as edges). | ||
|
||
![Basic Graph](../../img/clusters/basic_graph.drawio.png){:width="80%"} | ||
|
||
Then a group of interconnected nodes is referred to as a **cluster**. | ||
|
||
![Basic Cluster](../../img/clusters/basic_graph_cluster.drawio.png){:width="80%"} | ||
|
||
Graphs provide a natural way to represent linked data, where the nodes of a graph represent records being linked and the edges represent the links between them. So, if we have 5 records (A-E) in our dataset(s), with links between them, this can be represented as a graph like so: | ||
|
||
![Basic Graph - Records](../../img/clusters/basic_graph_records.drawio.png){:width="80%"} | ||
|
||
When linking people together, a cluster represents the all of the records in our dataset(s) that refer to the same person. We can give this cluster a new identifier (F) as a way of referring to this single person. | ||
|
||
![Basic Person Cluster](../../img/clusters/basic_graph_cluster_person.drawio.png){:width="80%"} | ||
|
||
!!! note | ||
|
||
For clusters produced with Splink, every edge comes with an associated Splink score (the probability of two records being a match). The clustering threshold (`match_probability_threshold`) supplied by the user determines which records are included in a cluster, as any links (edges) between records with a match probability below this threshold are excluded. | ||
|
||
Clusters, specifically cluster IDs, are the ultimate output of a Splink pipeline. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters