scholarmetrics: Compute scholarly metrics¶
scholarmetrics computes scholarly metrics for an array of citations:
$ pip install scholarmetrics
h-index:
>>> from scholarmetrics import hindex
>>> citations = [6, 10, 5, 46, 0, 2]
>>> hindex(citations)
4
Euclidean index:
>>> from scholarmetrics import euclidean
>>> citations = [6, 10, 5, 46, 0, 2]
>>> euclidean(citations)
47.75981574503821
Metrics¶
Currently, scholarmetrics can compute the following metrics:
|
Calculate Euclidean index for an author. |
|
Calculate g-index for an author. |
|
Calculate h-index for an author. |