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:

euclidean(arr[, ignore_nan]) Calculate Euclidean index for an author.
gindex(arr) Calculate g-index for an author.
hindex(arr[, ignore_nan]) Calculate h-index for an author.

Indices and tables