Redisgraph: PageRank algorithm?

Created on 28 Dec 2018  路  2Comments  路  Source: RedisGraph/RedisGraph

Hi,

do you have any plans to implement pagerank algorithm in near future?

Reference: https://neo4j.com/docs/graph-algorithms/current/algorithms/page-rank/

Kind regards
Wilhelm

Most helpful comment

Hi @Raidus,
Unfortunately currently not,
but we already have an implementation of PageRank using Matrices and linear-algebra.
All that's left is to decide on the API.

All 2 comments

Hi @Raidus,
Unfortunately currently not,
but we already have an implementation of PageRank using Matrices and linear-algebra.
All that's left is to decide on the API.

Pagerank is supported.
see doc
CALL algo.pageRank('person', 'friend') YIELD node, score RETURN node.name ORDER BY score DESC

Was this page helpful?
0 / 5 - 0 ratings