Metadata-Version: 2.1
Name: econci
Version: 0.1.0
Summary: Calculates Economic Complexity Indexes
Home-page: https://github.com/phcsoares/econci
Author: Pedro Henrique Castro Soares
Author-email: phcastrosoares@gmail.com
License: MIT license
Keywords: econci
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Requires-Python: >=3.5
Requires-Dist: pandas (>=0.25.0)
Requires-Dist: numpy (>=1.18.1)
Requires-Dist: networkx (>=2.4)

======
econci
======


.. image:: https://img.shields.io/pypi/v/econci.svg
        :target: https://pypi.python.org/pypi/econci

.. image:: https://img.shields.io/travis/phcsoares/econci.svg
        :target: https://travis-ci.com/phcsoares/econci

.. image:: https://readthedocs.org/projects/econci/badge/?version=latest
        :target: https://econci.readthedocs.io/en/latest/?badge=latest
        :alt: Documentation Status




"Calculates Economic Complexity Indexes"


* Free software: MIT license

This package implements the indexes found in the Atlas of Economic Complexity [HaRH2014]_.

Usage
-----

.. code-block:: python

        import econci

        comp = econci.Complexity(df, c='country', p='product', values='export')
        comp.calculate_indexes()
        eci = comp.eci
        pci = comp.pci

        comp.create_product_space()
        prod_space = com.product_space
        econci.edges_nodes_to_csv(prod_space, graph_name='prod_space', dir_path='./data/')


References
----------

.. [HaRH2014] Hausmann, R., Hidalgo, C. A., Bustos, S., Coscia, M., Chung, S., Jimenez, J., … Yildirim, M. A. (2014). The Atlas of Economic Complexity: Mapping Paths to Prosperity. MIT Press.

Credits
-------

This package was created with Cookiecutter_ and the `audreyr/cookiecutter-pypackage`_ project template.

.. _Cookiecutter: https://github.com/audreyr/cookiecutter
.. _`audreyr/cookiecutter-pypackage`: https://github.com/audreyr/cookiecutter-pypackage

=======
History
=======

0.1.0 (2020-06-06)
------------------

* First release on PyPI.


