├── .travis.yml ├── MANIFEST.in ├── README.rst ├── notebook ├── changepoint.ipynb └── outlier.ipynb ├── pydetect ├── __init__.py ├── base.py ├── changepoint.py ├── datasets.py ├── outlier.py ├── tests │ ├── __init__.py │ ├── test_changepoint.py │ ├── test_datasets.py │ └── test_outlier.py └── version.py ├── requirements.txt ├── scripts └── build_travis.sh └── setup.py /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinhrks/pydetect/HEAD/.travis.yml -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinhrks/pydetect/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinhrks/pydetect/HEAD/README.rst -------------------------------------------------------------------------------- /notebook/changepoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinhrks/pydetect/HEAD/notebook/changepoint.ipynb -------------------------------------------------------------------------------- /notebook/outlier.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinhrks/pydetect/HEAD/notebook/outlier.ipynb -------------------------------------------------------------------------------- /pydetect/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinhrks/pydetect/HEAD/pydetect/__init__.py -------------------------------------------------------------------------------- /pydetect/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinhrks/pydetect/HEAD/pydetect/base.py -------------------------------------------------------------------------------- /pydetect/changepoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinhrks/pydetect/HEAD/pydetect/changepoint.py -------------------------------------------------------------------------------- /pydetect/datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinhrks/pydetect/HEAD/pydetect/datasets.py -------------------------------------------------------------------------------- /pydetect/outlier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinhrks/pydetect/HEAD/pydetect/outlier.py -------------------------------------------------------------------------------- /pydetect/tests/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | # coding: utf-8 3 | -------------------------------------------------------------------------------- /pydetect/tests/test_changepoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinhrks/pydetect/HEAD/pydetect/tests/test_changepoint.py -------------------------------------------------------------------------------- /pydetect/tests/test_datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinhrks/pydetect/HEAD/pydetect/tests/test_datasets.py -------------------------------------------------------------------------------- /pydetect/tests/test_outlier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinhrks/pydetect/HEAD/pydetect/tests/test_outlier.py -------------------------------------------------------------------------------- /pydetect/version.py: -------------------------------------------------------------------------------- 1 | version = '0.2.0' 2 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinhrks/pydetect/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/build_travis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinhrks/pydetect/HEAD/scripts/build_travis.sh -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinhrks/pydetect/HEAD/setup.py --------------------------------------------------------------------------------