Metadata-Version: 2.1
Name: enda
Version: 0.0.2
Summary: Tools to manipulate energy time-series and contracts, and to perform forecasts.
Home-page: https://github.com/enercoop/enda
Author: Enercoop
Author-email: emmanuel.charon@enercoop.org
License: MIT
Project-URL: Bug Tracker, https://github.com/enercoop/enda/issues
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7.3
Description-Content-Type: text/markdown
Requires-Dist: pandas (>=1.0.0)

# enda


## What is it?

**enda** is a Python package that provides tools to manipulate **timeseries** data in conjunction with **contracts** data for analysis and **forecasts**. 

Its main goal is to help [Rescoop.eu](https://www.rescoop.eu/) build various applications, such as short-term electricity load and production forecasts, specifically for the [RescoopVPP](https://www.rescoopvpp.eu/) project. Hence some tools in this package perform TSO (transmission network operator) and DNO (distribution network operator) data wrangling for several European countries, as well as weather data. 

## Main Features
Here are some things **enda** does well:

  - Provide robust machine learning algorithms for short-term electricty load (and soon production) forecasts, developed by Enercoop and originally based on Komi Nagbe's thesis (http://www.theses.fr/s148364).
  - Manipulate **contracts** data coming from your ERP and turn it into timeseries you can use for analysis, visualisation and machine learning.  
  - Timeseries-specific detection of missing data, like time gaps and frequency changes.
  - Date-time feature engineering robust to timezone hazards.

## Where to get it
The source code is currently hosted on GitHub at: https://github.com/enercoop/enda

Binary installers for the latest released version are available at the [Python
Package Index (PyPI)](https://pypi.org/project/enda) (for now not on [Conda](https://docs.conda.io/en/latest/).

```sh
# PyPI
pip install enda
```

## How to get started ?

Check out the guides : https://github.com/enercoop/enda/tree/main/guides .

## Hard dependencies
- [Pandas - the main dataframe manipulation tool for python, advanced timeseries management included.](https://pandas.pydata.org/)
- Pandas itself has hard and optional dependencies, checkout https://pandas.pydata.org/pandas-docs/stable/getting_started/install.html .  

## Optional dependencies 

Optional dependencies are used only for specific methods. Enda will give an error if the method called requires a dependency that is not installed. 

Enda can work with some machine learning "backends" :
- [Scikit-learn](https://scikit-learn.org/stable/)
- [H2O - an efficient machine learning framework](https://docs.h2o.ai/)
You can also easily implement your own ml-backend by implementing enda's ModelInterface. 

Other optional dependencies :
- [statsmodel](https://pypi.org/project/statsmodels/)

## License
[MIT](LICENSE)


