Compute scholarly metrics in Python with Pandas and NumPy Edit
Project description
Compute scholarly metrics in Python with Pandas and NumPy.
Documentation: https://scholarmetrics.readthedocs.io.
Examples
J.E. Hirsch’s h-index or Hirsch-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
Contributing
Please see CONTRIBUTING.rst.
License
MIT License, see LICENSE.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
scholarmetrics-0.2.1.tar.gz
(13.4 kB
view hashes)