Skip to content

Latest commit

 

History

History
36 lines (28 loc) · 692 Bytes

README.md

File metadata and controls

36 lines (28 loc) · 692 Bytes

timeseries-analysis

Used as a PoC that CUSUM can accurately predict when to send alerts

#virtual env To use python virtual environments:

python3 -m venv _python
source _python/bin/activate
pip install -r requirements/dev.txt
pip install -r requirements/common.txt

In order to make gifs, install imagemagick

brew install imagemagick 

or

sudo apt-get install imagemagick 

Testing

Tests are written using the built in unit testing library unittest. Each directory includes unit tests for its own functionality. All tests can be run at once by using the convenience script run_tests.sh after setting up the python virtual environment:

./run_tests