Does anyone know about the differences in accuracy between the three different pagerank functions in Networkx?
I have a graph of 1000 nodes and 139732 edges, and the "plain" pagerank
function didn't seem to work at all -- all but two of the nodes had the same PG, so I'm assuming this function doesn't work quite as well for large graphs?
pagerank_numpy
's values also seemed to be a little bit more spread out than pagerank_scipy
's values. The documentation for this function says that "This will be the fastest and most accurate for small graphs." What is meant by "small" graphs?
Also, why doesn't pagerank_numpy allow for max_iter
and tol
arguments?