I'm using Python to stream from twitter based on keyword, convert to network with GraphiPy, then using NetworkX to perform pagerank and other algos on the nodelist. My issue is that the PageRank values are all funky-- very obviously low importance nodes (nodes with very low degrees relatively) are scoring higher than their high degree counterparts. Basically the results make no sense. Exporting the node/edge list to Gephi yields entirely different results for PageRank (and other algos).
I've tried fiddling with the parameters, but short of just implementing a PageRank algo directly, I don't see what I can do to get NetworkX PageRank (and other algos) to work properly.
Is there something basic I may be missing?