Metadata-Version: 2.1
Name: numerai_reports
Version: 0.5.5
Summary: Reports for the Numerai machine learning competition
Home-page: https://github.com/uuazed/numerai_reports
Maintainer: uuazed
Maintainer-email: uuazed@gmail.com
License: MIT License
Platform: OS Independent
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Scientific/Engineering
Description-Content-Type: text/markdown

[![Build Status](https://travis-ci.org/uuazed/numerai_reports.png)](https://travis-ci.org/uuazed/numerai_reports)
[![codecov](https://codecov.io/gh/uuazed/numerai_reports/branch/master/graph/badge.svg)](https://codecov.io/gh/uuazed/numerai_reports)
[![Requirements Status](https://requires.io/github/uuazed/numerai_reports/requirements.svg?branch=master)](https://requires.io/github/uuazed/numerai_reports/requirements/?branch=master)
[![PyPI](https://img.shields.io/pypi/v/numerai_reports.svg)](https://pypi.python.org/pypi/numerai_reports)

# Numerai Reports
Collection of reports about the numer.ai machine learning competition.

This library was created to provide some reports and statistics about the
competition, like round summaries and payout summaries, but also tools to
analyze one's model performance. For now, all reports are pure numeric reports.

All information is retrieved via numerai's API and converted to pandas
DataFrames, to make it easy to work with. This allows to create your own
reports on top. `numerai_reports` also caches API results to disk to limit the
amount of request and to speed-up report generation.

If you encounter a problem or have suggestions, feel free to open an issue.

# Installation
`pip install --upgrade numerai_reports`


# Usage Example

    from numerai_reports import reports
    print(reports.medals_leaderboard())
    print(reports.medals_leaderboard(orderby="gold"))
    print(reports.payouts(["uuazed", "uuazed2"]))


