Undirected trait . The algorithm ignores the undirectedness of the graph.

Heterogeneous nodes

Heterogeneous nodes fully supported. The algorithm has the ability to distinguish between nodes of different types.

Heterogeneous nodes

Heterogeneous nodes allowed. The algorithm treats all selected nodes similarly regardless of their label.

Heterogeneous relationships

Heterogeneous relationships fully supported. The algorithm has the ability to distinguish between relationships of different types.

Heterogeneous relationships

Heterogeneous relationships allowed. The algorithm treats all selected relationships similarly regardless of their type.

Weighted relationships

Weighted trait . The algorithm supports a relationship property to be used as weight, specified via the relationshipWeightProperty configuration parameter.

Weighted relationships

Weighted trait . The algorithm treats each relationship as equally important, discarding the value of any relationship weight.

The PageRank algorithm measures the importance of each node within the graph, based on the number incoming relationships and the importance of the corresponding source nodes. The underlying assumption roughly speaking is that a page is only as important as the pages that link to it.

PageRank is introduced in the original Google paper as a function that solves the following equation:

d is a damping factor which can be set between 0 (inclusive) and 1 (exclusive). It is usually set to 0.85.

C(A) is defined as the number of links going out of page A .

This equation is used to iteratively update a candidate solution and arrive at an approximate solution to the same equation.

For more information on this algorithm, see:

If there are no relationships from within a group of pages to outside the group, then the group is considered a spider trap.

Rank sink can occur when a network of pages is forming an infinite cycle.

Dead-ends occur when pages have no outgoing relationship.

This section covers the syntax used to execute the PageRank algorithm in each of its execution modes. We are describing the named graph variant of the syntax. To learn more about general syntax variants, see Syntax overview .

PageRank syntax per mode

Generated internally

An ID that can be provided to more easily track the algorithm’s progress.

logProgress

Boolean

If disabled the progress percentage will not be logged.

dampingFactor

Float

The damping factor of the Page Rank calculation. Must be in [0, 1).

maxIterations

Integer

The maximum number of iterations of Page Rank to run.

tolerance

Float

0.0000001

Minimum change in scores between iterations. If all scores change less than the tolerance value the result is considered stable and the algorithm returns.

relationshipWeightProperty

String

Name of the relationship property to use as weights. If unspecified, the algorithm runs unweighted.

sourceNodes

List of Node or Number

The nodes or node ids to use for computing Personalized Page Rank.

scaler

String or Map

The name of the scaler applied for the final scores. Supported values are None , MinMax , Max , Mean , Log , and StdScore . To apply scaler-specific configuration, use the Map syntax: {scaler: 'name', …​} .

Generated internally

An ID that can be provided to more easily track the algorithm’s progress.

logProgress

Boolean

If disabled the progress percentage will not be logged.

dampingFactor

Float

The damping factor of the Page Rank calculation. Must be in [0, 1).

maxIterations

Integer

The maximum number of iterations of Page Rank to run.

tolerance

Float

0.0000001

Minimum change in scores between iterations. If all scores change less than the tolerance value the result is considered stable and the algorithm returns.

relationshipWeightProperty

String

Name of the relationship property to use as weights. If unspecified, the algorithm runs unweighted.

sourceNodes

List of Node or Number

The nodes or node ids to use for computing Personalized Page Rank.

scaler

String or Map

The name of the scaler applied for the final scores. Supported values are None , MinMax , Max , Mean , Log , and StdScore . To apply scaler-specific configuration, use the Map syntax: {scaler: 'name', …​} .

centralityDistribution

Map containing min, max, mean as well as p50, p75, p90, p95, p99 and p999 percentile values of centrality values.

configuration

The configuration used for running the algorithm.

Generated internally

An ID that can be provided to more easily track the algorithm’s progress.

dampingFactor

Float

The damping factor of the Page Rank calculation. Must be in [0, 1).

maxIterations

Integer

The maximum number of iterations of Page Rank to run.

tolerance

Float

0.0000001

Minimum change in scores between iterations. If all scores change less than the tolerance value the result is considered stable and the algorithm returns.

relationshipWeightProperty

String

Name of the relationship property to use as weights. If unspecified, the algorithm runs unweighted.

sourceNodes

List of Node or Number

The nodes or node ids to use for computing Personalized Page Rank.

scaler

String or Map

The name of the scaler applied for the final scores. Supported values are None , MinMax , Max , Mean , Log , and StdScore . To apply scaler-specific configuration, use the Map syntax: {scaler: 'name', …​} .

nodePropertiesWritten

Integer

The number of properties that were written to the projected graph.

centralityDistribution

Map containing min, max, mean as well as p50, p75, p90, p95, p99 and p999 percentile values of centrality values.

configuration

The configuration used for running the algorithm.

Generated internally

An ID that can be provided to more easily track the algorithm’s progress.

logProgress

Boolean

If disabled the progress percentage will not be logged.

writeConcurrency

Integer

value of 'concurrency'

The number of concurrent threads used for writing the result to Neo4j.

writeProperty

String

The node property in the Neo4j database to which the score is written.

dampingFactor

Float

The damping factor of the Page Rank calculation. Must be in [0, 1).

maxIterations

Integer

The maximum number of iterations of Page Rank to run.

tolerance

Float

0.0000001

Minimum change in scores between iterations. If all scores change less than the tolerance value the result is considered stable and the algorithm returns.

relationshipWeightProperty

String

Name of the relationship property to use as weights. If unspecified, the algorithm runs unweighted.

sourceNodes

List of Node or Number

The nodes or node ids to use for computing Personalized Page Rank.

scaler

String or Map

The name of the scaler applied for the final scores. Supported values are None , MinMax , Max , Mean , Log , and StdScore . To apply scaler-specific configuration, use the Map syntax: {scaler: 'name', …​} .

centralityDistribution

Map containing min, max, mean as well as p50, p75, p90, p95, p99 and p999 percentile values of centrality values.

configuration

The configuration used for running the algorithm.

In this section we will show examples of running the PageRank algorithm on a concrete graph. The intention is to illustrate what the results look like and to provide a guide in how to make use of the algorithm in a real setting. We will do this on a small web network graph of a handful nodes connected in a particular pattern. The example graph looks like this:

The following Cypher statement will create the example graph in the Neo4j database:
CREATE
  (home:Page {name:'Home'}),
  (about:Page {name:'About'}),
  (product:Page {name:'Product'}),
  (links:Page {name:'Links'}),
  (a:Page {name:'Site A'}),
  (b:Page {name:'Site B'}),
  (c:Page {name:'Site C'}),
  (d:Page {name:'Site D'}),
  (home)-[:LINKS {weight: 0.2}]->(about),
  (home)-[:LINKS {weight: 0.2}]->(links),
  (home)-[:LINKS {weight: 0.6}]->(product),
  (about)-[:LINKS {weight: 1.0}]->(home),
  (product)-[:LINKS {weight: 1.0}]->(home),
  (a)-[:LINKS {weight: 1.0}]->(home),
  (b)-[:LINKS {weight: 1.0}]->(home),
  (c)-[:LINKS {weight: 1.0}]->(home),
  (d)-[:LINKS {weight: 1.0}]->(home),
  (links)-[:LINKS {weight: 0.8}]->(home),
  (links)-[:LINKS {weight: 0.05}]->(a),
  (links)-[:LINKS {weight: 0.05}]->(b),
  (links)-[:LINKS {weight: 0.05}]->(c),
  (links)-[:LINKS {weight: 0.05}]->(d);

This graph represents eight pages, linking to one another. Each relationship has a property called weight , which describes the importance of the relationship.

The following statement will project a graph using a native projection and store it in the graph catalog under the name 'myGraph'.
CALL gds.graph.project(
  'myGraph',
  'Page',
  'LINKS',
    relationshipProperties: 'weight'

4.1. Memory Estimation

First off, we will estimate the cost of running the algorithm using the estimate procedure. This can be done with any execution mode. We will use the write mode in this example. Estimating the algorithm is useful to understand the memory impact that running the algorithm on your graph will have. When you later actually run the algorithm in one of the execution modes the system will perform an estimation. If the estimation shows that there is a very high probability of the execution going over its memory limitations, the execution is prohibited. To read more about this, see Automatic estimation and execution blocking.

For more details on estimate in general, see Memory Estimation.

The following will estimate the memory requirements for running the algorithm:
CALL gds.pageRank.write.estimate('myGraph', {
  writeProperty: 'pageRank',
  maxIterations: 20,
  dampingFactor: 0.85
YIELD nodeCount, relationshipCount, bytesMin, bytesMax, requiredMemory
Table 13. Results

In the stream execution mode, the algorithm returns the score for each node. This allows us to inspect the results directly or post-process them in Cypher without any side effects. For example, we can order the results to find the nodes with the highest PageRank score.

For more details on the stream mode in general, see Stream.

CALL gds.pageRank.stream('myGraph')
YIELD nodeId, score
RETURN gds.util.asNode(nodeId).name AS name, score
ORDER BY score DESC, name ASC
Table 14. Results

The above query is running the algorithm in stream mode as unweighted and the returned scores are not normalized. Below, one can find an example for weighted graphs. Another example shows the application of a scaler to normalize the final scores.

4.3. Stats

In the stats execution mode, the algorithm returns a single row containing a summary of the algorithm result. For example PageRank stats returns centrality histogram which can be used to monitor the distribution of PageRank score values across all computed nodes. This execution mode does not have any side effects. It can be useful for evaluating algorithm performance by inspecting the computeMillis return item. In the examples below we will omit returning the timings. The full signature of the procedure can be found in the syntax section.

For more details on the stats mode in general, see Stats.

The following will run the algorithm and returns the result in form of statistical and measurement values
CALL gds.pageRank.stats('myGraph', {
  maxIterations: 20,
  dampingFactor: 0.85
YIELD centralityDistribution
RETURN centralityDistribution.max AS max
Table 15. Results

4.4. Mutate

The mutate execution mode extends the stats mode with an important side effect: updating the named graph with a new node property containing the score for that node. The name of the new property is specified using the mandatory configuration parameter mutateProperty. The result is a single summary row, similar to stats, but with some additional metrics. The mutate mode is especially useful when multiple algorithms are used in conjunction.

For more details on the mutate mode in general, see Mutate.

The following will run the algorithm in mutate mode:
CALL gds.pageRank.mutate('myGraph', {
  maxIterations: 20,
  dampingFactor: 0.85,
  mutateProperty: 'pagerank'
YIELD nodePropertiesWritten, ranIterations
Table 16. Results

4.5. Write

The write execution mode extends the stats mode with an important side effect: writing the score for each node as a property to the Neo4j database. The name of the new property is specified using the mandatory configuration parameter writeProperty. The result is a single summary row, similar to stats, but with some additional metrics. The write mode enables directly persisting the results to the database.

For more details on the write mode in general, see Write.

4.6. Weighted

By default, the algorithm is considering the relationships of the graph to be unweighted, to change this behaviour we can use configuration parameter called relationshipWeightProperty. In the weighted case, the previous score of a node send to its neighbors, is multiplied by the relationship weight and then divided by the sum of the weights of its outgoing relationships. If the value of the relationship property is negative it will be ignored during computation. Below is an example of running the algorithm using the relationship property.

The following will run the algorithm in stream mode using relationship weights:
CALL gds.pageRank.stream('myGraph', {
  maxIterations: 20,
  dampingFactor: 0.85,
  relationshipWeightProperty: 'weight'
YIELD nodeId, score
RETURN gds.util.asNode(nodeId).name AS name, score
ORDER BY score DESC, name ASC
Table 18. Results

4.7. Tolerance

The tolerance configuration parameter denotes the minimum change in scores between iterations. If all scores change less than the configured tolerance value the result stabilises, and the algorithm returns.

The following will run the algorithm in stream mode using bigger tolerance value:
CALL gds.pageRank.stream('myGraph', {
  maxIterations: 20,
  dampingFactor: 0.85,
  tolerance: 0.1
YIELD nodeId, score
RETURN gds.util.asNode(nodeId).name AS name, score
ORDER BY score DESC, name ASC
Table 19. Results

In this example we are using tolerance: 0.1, so the results are a bit different compared to the ones from stream example which is using the default value of tolerance. Note that the nodes 'About', 'Link' and 'Product' now have the same score, while with the default value of tolerance the node 'Product' has higher score than the other two.

4.8. Damping Factor

The damping factor configuration parameter accepts values between 0 (inclusive) and 1 (exclusive). If its value is too high then problems of sinks and spider traps may occur, and the values may oscillate so that the algorithm does not converge. If it’s too low then all scores are pushed towards 1, and the result will not sufficiently reflect the structure of the graph.

The following will run the algorithm in stream mode using smaller dampingFactor value:
CALL gds.pageRank.stream('myGraph', {
  maxIterations: 20,
  dampingFactor: 0.05
YIELD nodeId, score
RETURN gds.util.asNode(nodeId).name AS name, score
ORDER BY score DESC, name ASC
Table 20. Results

Compared to the results from the stream example which is using the default value of dampingFactor the score values are closer to each other when using dampingFactor: 0.05. Also, note that the nodes 'About', 'Link' and 'Product' now have the same score, while with the default value of dampingFactor the node 'Product' has higher score than the other two.

4.9. Personalised PageRank

Personalized PageRank is a variation of PageRank which is biased towards a set of sourceNodes. This variant of PageRank is often used as part of recommender systems.

The following examples show how to run PageRank centered around 'Site A'.

The following will run the algorithm and stream results:
MATCH (siteA:Page {name: 'Site A'})
CALL gds.pageRank.stream('myGraph', {
  maxIterations: 20,
  dampingFactor: 0.85,
  sourceNodes: [siteA]
YIELD nodeId, score
RETURN gds.util.asNode(nodeId).name AS name, score
ORDER BY score DESC, name ASC
Table 21. Results

4.10. Scaling centrality scores

To normalize the final scores as part of the algorithm execution, one can use the scaler configuration parameter. A description of all available scalers can be found in the documentation for the scaleProperties procedure.

The following will run the algorithm in stream mode and returns normalized results:
CALL gds.pageRank.stream('myGraph', {
  scaler: "MEAN"
YIELD nodeId, score
RETURN gds.util.asNode(nodeId).name AS name, score
ORDER BY score DESC, name ASC
Table 22. Results

© 2023 Neo4j, Inc.
Terms | Privacy | Sitemap

Neo4j®, Neo Technology®, Cypher®, Neo4j® Bloom and Neo4j® Aura are registered trademarks of Neo4j, Inc. All other marks are owned by their respective companies.

Contact Us →

US: 1-855-636-4532
Sweden +46 171 480 113
UK: +44 20 3868 3223
France: +33 (0) 1 88 46 13 20