Closed vc1492a closed 4 years ago
This issue is fixed in the latest version pushed to the dev
branch. More specifically:
author_ids = [tuple(d.values()) for d in flattened_list]
on line 70 should have been
author_ids = [tuple(d.values()) for d in doc_authors[doc]]
The AuthorRank methodology constructs a weighted directed-graph as opposed to an undirected, non-weighted graph representing direct co-authorship between authors within a set of documents which is easier for interpretation in many cases. It may be helpful to consider adding an option to return an undirected graph for use in visualization or subsequent analysis.