Metadata-Version: 2.1
Name: soam
Version: 0.10.1
Summary: Tools for time series analysis, plotting and reporting.
Home-page: UNKNOWN
Author: Mutt Data
Author-email: info@muttdata.ai
License: UNKNOWN
Description: # SoaM
        
        [![pipeline status](https://gitlab.com/mutt_data/soam/badges/master/pipeline.svg)](https://gitlab.com/mutt_data/soam/-/commits/master) [![coverage report](https://gitlab.com/mutt_data/soam/badges/master/coverage.svg)](https://gitlab.com/mutt_data/soam/-/commits/master) [![pypi version](https://img.shields.io/pypi/v/soam?color=blue)](https://pypi.org/project/soam/)
        
        SoaM is a [Prefect](https://docs.prefect.io/) based library created by [Mutt](https://muttdata.ai/).
        Its goal is to create a forecasting framework, this tool is developed with conjunctions of experience on previous
        projects. There come the name: Son of a Mutt = SoaM
        
        ## SoaM pipeline
        
        <!-- gfmd-start -->
        ![Mermaid diagram](https://kroki.io/mermaid/svg/eNpljbEOgjAURXe_4o0wEBQQnJzUxEQSIm6EocITmwAlrx1MCP-uloIkdnu959xbEeuecLmu4PN4uc6sA1PsziTC2c4dZ89LL3NTwWK48QYhReIo4fhSxAolyM2NuVmas2pCT1_-VESslQ9BDf50XxOBIU6CsGBSLYBt30-_vK0gFiXWwzBaBgn0FWaW7kgIS14oLlppTyWhJqK_FUhqoZZrI7gz4BU7Qd_ZOY_G_A05RWCs)
        
        <details>
        <summary><sup><sub>Diagram source code</sub></sup></summary>
        
        ```mermaid
        graph LR
            id0[(Database I)]-->id2[/SoaM Time Series Extractor/]
            id1[(Database II)]-->id2
            id2-->id3[/SoaM Transformer/]
            id3-->id4[/SoaM Forecaster/]
            id5{{Forecasting Model}}-->id4
            id4-->id6[(SoaM Predictions)]
            id6-->id7[/SoaM Forecaster Plotter/]
            id6-->id8[/SoaM Reporting/]
            id7-->id8
        ```
        </details>
        <!-- gfmd-end -->
        This library pipeline supports any data source.
        The process is structured in different stages:
        * Extraction: manages the granularity and aggregation of the input data.
        * Preprocessing: lets select among out of the box tools to perform standard tasks as normalization or fill nan values.
        * Forecasting: fits a model and predict results.
        * Postprocessing: modifies the results based on business/real information or create analysis with the predicted values,
        such as an anomaly detection.
        
        ## Overview of the Steps Run in SoaM
        
        ### Extraction
        This stage extracts data from the needed sources to build the condensed dataset for the next steps. This tends to be
        project dependent. Then it converts the full dataset to the desired time granularity and aggregation level by some categorical attribute/s.
        
        ### Preprocessing
        This step implements functions to further cleanup and prepare the data for the following steps, such as:
        * Add feature/transformation
        * Fill nan values
        * Apply value normalizations
        * Shift values
        
        ### Forecasting
        This stage receives the clean data, performs the forecast and store the predicted values in the defined storages.
        Currently there are implementations to store in CSV files and SQL databases.
        A variety of models are currently supported to fit and predict data. They can be extended to create custom ones.
        * [Exponential Smoothing](https://www.statsmodels.org/stable/examples/notebooks/generated/exponential_smoothing.html)
        * [Orbit DLT Full](https://orbit-ml.readthedocs.io/en/latest/tutorials/dlt.html)
        * [Prophet](https://pypi.org/project/fbprophet)
        * [SARIMAX](https://www.statsmodels.org/dev/generated/statsmodels.tsa.statespace.sarimax.SARIMAX.html)
        
        ### Backtesting
        #### Window policies
        To do backtesting the data is splited in train and validation, there are two spliting methods:
        - Sliding: create a fixed size window for the training data that ends at the beginning of the validation data.
        - Expanding: create the training data from remaining data since the start of the series until the validation data.
        
        For more information review this document: [backtesting at scale](https://eng.uber.com/backtesting-at-scale/)
        
        ### Postprocessing
        This last stage is prepared to work on the forecasts generated by the pipeline. For example:
        * Clip/Cleanup the predictions.
        * Perform further analyses (such as anomaly detection).
        * Export reports.
        
        ## Table of Contents
        - [SoaM](#soam)
          - [SoaM pipeline](#soam-pipeline)
          - [Overview of the Steps Run in SoaM](#overview-of-the-steps-run-in-soam)
            - [Extraction](#extraction)
            - [Preprocessing](#preprocessing)
            - [Forecasting](#forecasting)
            - [Backtesting](#backtesting)
              - [Window policies](#window-policies)
            - [Postprocessing](#postprocessing)
          - [Table of Contents](#table-of-contents)
          - [Installation](#installation)
            - [Install extras](#install-extras)
          - [Quick start](#quick-start)
          - [Usage](#usage)
          - [Database management](#database-management)
            - [Alembic](#alembic)
          - [Developers guide](#developers-guide)
          - [Testing](#testing)
            - [Testing data extraction](#testing-data-extraction)
            - [Testing plots](#testing-plots)
          - [Contributing](#contributing)
          - [CI](#ci)
          - [Rules of Thumb](#rules-of-thumb)
          - [Credits](#credits)
          - [License](#license)
        
        ## Installation
        Install the base lib via [pipy](https://pypi.org/project/soam/) by executing:
        ```bash
        pip install soam
        ```
        Or clone this repository:
        ```bash
        git clone [soam-repo]
        ```
        And then run:
        ```bash
        pip install . or pip install -e .
        ```
        
        ### Install extras
        The project contains some extra dependencies that are not included in the default installation to make it lightweight. If you want to install extensions use:
        ```bash
        pip install -e ".[slack]"
        pip install -e ".[prophet]"
        pip install -e ".[pdf_report]"
        pip install -e ".[gsheets_report]"
        pip install -e ".[report]" # slack and *_report extras
        pip install -e ".[all]" # all previous
        ```
        
        *Note*: The `pdf_report` extra might need to run the following command before installation ([More info](https://nbconvert.readthedocs.io/en/latest/install.html#installing-tex))
        
        $ `apt-get install texlive-xetex texlive-fonts-recommended libpoppler-cpp-dev`
        
        ## Quick start
        [Here](https://gitlab.com/mutt_data/soam/-/blob/master/notebook/examples/quickstart.ipynb) is an example for a quick start into SoaM. In it a time series with AAPL stock prices is loaded, processed and forecasted. As well, there's [other example](https://gitlab.com/mutt_data/soam/-/blob/master/notebook/examples/soamflowrun.ipynb) with the same steps, but exploding the power of flows.
        
        ## Usage
        For further info check our [end to end](https://mutt_data.gitlab.io/soam/end2end.html) example where we explained how SoaM will interact with Airflow and Cookiecutter on a generic project.
        
        ## Database management
        For database storing there are complementary tools:
        * [Decouple](https://github.com/henriquebastos/python-decouple) storing the database information in a separated file. With a `settings.ini` file to store the database credentials and general configurations, when modifying it don't change the keys names.
        * [Alembic](https://alembic.sqlalchemy.org/en/latest/) to create the database migrations. A brief description is below.
        * [SQLAlchemy](https://docs.sqlalchemy.org/en/) as an ORM, the schemas of the tables are defined in [data_models](https://gitlab.com/mutt_data/soam/-/blob/master/soam/data_models.py).
        
        ### Alembic
        This package uses alembic and expects you to use it!
        
        Alembic is a database migration tool for usage with SQLAlchemy.
        After defining the schemas, with SQLAlchemy, Alembic keeps track of the database modifications such as add new
        columns, modify a schema or add new tables.
        
        Alembic is set up to use the credentials from the `settings.ini` file and get the defined models from `data_models`.
        Be aware that alembic needs this package installed to run!
        
        When making any change of the data models you need them to impact into the database for this you will have to run:
        
        ```bash
        alembic revision --autogenerate
        alembic upgrade head
        ```
        
        The first command will check the last version of the database and will
        [autogenerate](https://alembic.sqlalchemy.org/en/latest/autogenerate.html#what-does-autogenerate-detect-and-what-does-it-not-detect)
        the python file with the necessary changes.
        It is always necessary to manually review and correct the candidate migrations that autogenerate produces.
        
        The second command will use this file to impact the changes in the database.
        
        For more alembic commands visit the [documentation](https://alembic.sqlalchemy.org/en/latest/)
        
        ## Developers guide
        If you are going to develop SoaM, you should checkout the documentation directory before adding code,
        you can start in the [project structure document](https://mutt_data.gitlab.io/soam/project_structure.html).
        
        ## Testing
        To run the default testsuite run this:
        ```
        pytest
        ```
        To run the tests with nox:
        ```bash
        nox --session tests
        ```
        
        ### Testing data extraction
        The tests for the extractor currently depends on having a local Postgres database and
        the variable `TEST_DB_CONNSTR` set with it's connection string.
        
        The easiest way to to this is as follows:
        ```
        docker run --network=host \
            -e "POSTGRES_USER=soam" \
            -e "POSTGRES_PASSWORD=soam" \
            -e "POSTGRES_DB=soam" \
            --rm postgres
        
        TEST_DB_CONNSTR="postgresql://soam:soam@localhost/soam" pytest
        ```
        
        To run a specific test file:
        ```bash
        TEST_DB_CONNSTR="postgresql://soam:soam@localhost/soam" pytest -v tests/test_file.py
        ```
        
        Note that even though the example has a DB name during the tests a new database is created and dropped to ensure that no state is maintened between runs.
        
        ### Testing plots
        To generate images for testing we use [pytest-mpl](https://github.com/matplotlib/pytest-mpl) as follows:
        
        ```
        pytest --mpl-generate-path=tests/plotting/baseline
        ```
        
        To run the image based tests:
        ```
        pytest --mpl
        ```
        
        ## Contributing
        We appreciate for considering to help out maintaining this project. If you'd like to contribute please read our [contributing guidelines](https://mutt_data.gitlab.io/soam/CONTRIBUTING.html).
        
        ## CI
        
        To run the CI jobs locally you have to run it with [nox](https://nox.thea.codes/en/stable/):
        In the project root directory, there is a noxfile.py file defining all the jobs, these jobs will be executed when calling from CI or you can call them locally.
        
        You can run all the jobs with the command `nox`, from the project root directory or run just one job with `nox --session test` command, for example.
        
        The .gitlab-ci.yml file configures the gitlab CI to run nox.
        Nox let us execute some test and checks before making the commit.
        We are using:
        * Linting job:
          * [isort](https://pycqa.github.io/isort/) to reorder imports
          * [pylint](https://github.com/PyCQA/pylint) to be pep8 compliant
          * [black](https://github.com/psf/black) to format for code conventions
          * [mypy](http://mypy-lang.org/) for static type checking
        * [bandit](https://bandit.readthedocs.io/en/latest/) for security checks
        * [pytest](https://docs.pytest.org/) to run all the tests in the test folder.
        * [pyreverse](https://pythonhosted.org/theape/documentation/developer/explorations/explore_graphs/explore_pyreverse.html) to create diagrams of the project
        
        This runs on a gitlab machine after every commit.
        
        We are caching the environments for each job on each branch.
        On every first commit of a branch, you will have to change the policy also if you add dependencies or a new package to the project.
        Gitlab cache policy:
        * `pull`: pull the cached files from the cloud.
        * `push`: push the created files to the cloud.
        * `pull-push`: pull the cached files and push the newly created files.
        
        ## Rules of Thumb
        This section contains some recommendations when working with SoaM to avoid common mistakes:
        
        * When possible reuse objects to preserve their configuration.
        Eg: Transformations, forecasters, etc.
        * Use the same train-test windows when backtesting and training to deploy and on later usage.
        
        ## Credits
        Alejandro Rusi <br>
        Diego Leguizamón <br>
        Diego Lizondo <br>
        Eugenio Scafati <br>
        Fabian Wolfmann <br>
        Federico Font <br>
        Francisco Lopez Destain <br>
        Guido Trucco <br>
        Hugo Daniel Viotti <br>
        Juan Martin Pampliega <br>
        Pablo Andres Lorenzatto <br>
        Wenceslao Villegas
        
        ## License
        `soam` is licensed under the [Apache License 2.0](https://gitlab.com/mutt_data/muttlib/-/blob/master/LICENCE).
        
        
Keywords: anomalies forecasting reporting
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Requires-Python: ~=3.6
Description-Content-Type: text/markdown
Provides-Extra: dev
Provides-Extra: test
Provides-Extra: slack
Provides-Extra: orbit
Provides-Extra: prophet
Provides-Extra: pdf_report
Provides-Extra: gsheets_report
Provides-Extra: statsmodels
Provides-Extra: mlflow
Provides-Extra: report
Provides-Extra: all
