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
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
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.