├── .gitignore ├── .travis.yml ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.md ├── data └── kuiper_table.npy ├── docs ├── Makefile ├── clustering.rst ├── conf.py ├── decorators.rst ├── descriptive.rst ├── distributions.rst ├── event_series.rst ├── index.rst ├── iterators.rst ├── make.bat ├── regression.rst └── tests.rst ├── pycircstat ├── __init__.py ├── clustering.py ├── data.py ├── decorators.py ├── descriptive.py ├── distributions.py ├── event_series.py ├── iterators.py ├── regression.py ├── tests.py └── utils.py ├── setup.py └── tests ├── __init__.py ├── test_clustering.py ├── test_decorators.py ├── test_descriptive.py ├── test_distributions.py ├── test_event_series.py ├── test_regression.py ├── test_tests.py └── test_utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/circstat/pycircstat/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/circstat/pycircstat/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/circstat/pycircstat/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include LICENSE 2 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/circstat/pycircstat/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/circstat/pycircstat/HEAD/README.md -------------------------------------------------------------------------------- /data/kuiper_table.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/circstat/pycircstat/HEAD/data/kuiper_table.npy -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/circstat/pycircstat/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/clustering.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/circstat/pycircstat/HEAD/docs/clustering.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/circstat/pycircstat/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/decorators.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/circstat/pycircstat/HEAD/docs/decorators.rst -------------------------------------------------------------------------------- /docs/descriptive.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/circstat/pycircstat/HEAD/docs/descriptive.rst -------------------------------------------------------------------------------- /docs/distributions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/circstat/pycircstat/HEAD/docs/distributions.rst -------------------------------------------------------------------------------- /docs/event_series.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/circstat/pycircstat/HEAD/docs/event_series.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/circstat/pycircstat/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/iterators.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/circstat/pycircstat/HEAD/docs/iterators.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/circstat/pycircstat/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/regression.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/circstat/pycircstat/HEAD/docs/regression.rst -------------------------------------------------------------------------------- /docs/tests.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/circstat/pycircstat/HEAD/docs/tests.rst -------------------------------------------------------------------------------- /pycircstat/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/circstat/pycircstat/HEAD/pycircstat/__init__.py -------------------------------------------------------------------------------- /pycircstat/clustering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/circstat/pycircstat/HEAD/pycircstat/clustering.py -------------------------------------------------------------------------------- /pycircstat/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/circstat/pycircstat/HEAD/pycircstat/data.py -------------------------------------------------------------------------------- /pycircstat/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/circstat/pycircstat/HEAD/pycircstat/decorators.py -------------------------------------------------------------------------------- /pycircstat/descriptive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/circstat/pycircstat/HEAD/pycircstat/descriptive.py -------------------------------------------------------------------------------- /pycircstat/distributions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/circstat/pycircstat/HEAD/pycircstat/distributions.py -------------------------------------------------------------------------------- /pycircstat/event_series.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/circstat/pycircstat/HEAD/pycircstat/event_series.py -------------------------------------------------------------------------------- /pycircstat/iterators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/circstat/pycircstat/HEAD/pycircstat/iterators.py -------------------------------------------------------------------------------- /pycircstat/regression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/circstat/pycircstat/HEAD/pycircstat/regression.py -------------------------------------------------------------------------------- /pycircstat/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/circstat/pycircstat/HEAD/pycircstat/tests.py -------------------------------------------------------------------------------- /pycircstat/utils.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/circstat/pycircstat/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_clustering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/circstat/pycircstat/HEAD/tests/test_clustering.py -------------------------------------------------------------------------------- /tests/test_decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/circstat/pycircstat/HEAD/tests/test_decorators.py -------------------------------------------------------------------------------- /tests/test_descriptive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/circstat/pycircstat/HEAD/tests/test_descriptive.py -------------------------------------------------------------------------------- /tests/test_distributions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/circstat/pycircstat/HEAD/tests/test_distributions.py -------------------------------------------------------------------------------- /tests/test_event_series.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/circstat/pycircstat/HEAD/tests/test_event_series.py -------------------------------------------------------------------------------- /tests/test_regression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/circstat/pycircstat/HEAD/tests/test_regression.py -------------------------------------------------------------------------------- /tests/test_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/circstat/pycircstat/HEAD/tests/test_tests.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/circstat/pycircstat/HEAD/tests/test_utils.py --------------------------------------------------------------------------------