diff --git a/doc/modules/ROOT/pages/algorithms/page-rank.adoc b/doc/modules/ROOT/pages/algorithms/page-rank.adoc index 66ab3e0a2b..e1788f9c16 100644 --- a/doc/modules/ROOT/pages/algorithms/page-rank.adoc +++ b/doc/modules/ROOT/pages/algorithms/page-rank.adoc @@ -530,7 +530,6 @@ ORDER BY score DESC, name ASC -- In this example we are using `tolerance: 0.1`, so the results are a bit different compared to the ones from xref:algorithms/page-rank.adoc#algorithms-page-rank-examples-stream[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. [[algorithms-page-rank-examples-damping]] @@ -570,7 +569,6 @@ ORDER BY score DESC, name ASC -- Compared to the results from the xref:algorithms/page-rank.adoc#algorithms-page-rank-examples-stream[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. [[algorithms-page-rank-examples-personalised]]