├── .gitignore ├── .travis.yml ├── CHANGES.md ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.md ├── RELEASE_HOWTO.md ├── doc ├── .gitignore ├── Makefile ├── conf.py ├── datasets │ ├── API.rst │ ├── index.rst │ └── rrlyrae.rst ├── index.rst ├── periodic │ ├── API.rst │ ├── index.rst │ ├── lomb_scargle.rst │ ├── lomb_scargle_multiband.rst │ ├── supersmoother.rst │ ├── template.rst │ └── trended_lomb_scargle.rst └── sphinxext │ └── numpy_ext │ ├── __init__.py │ ├── astropyautosummary.py │ ├── autodoc_enhancements.py │ ├── automodapi.py │ ├── automodsumm.py │ ├── changelog_links.py │ ├── comment_eater.py │ ├── compiler_unparse.py │ ├── docscrape.py │ ├── docscrape_sphinx.py │ ├── doctest.py │ ├── edit_on_github.py │ ├── numpydoc.py │ ├── phantom_import.py │ ├── smart_resolver.py │ ├── tocdepthfix.py │ ├── traitsdoc.py │ ├── utils.py │ └── viewcode.py ├── examples ├── FastLombScargle.ipynb ├── Index.ipynb ├── MultiBand.ipynb └── SingleBand.ipynb ├── gatspy ├── __init__.py ├── datasets │ ├── __init__.py │ ├── rrlyrae.py │ ├── rrlyrae_generated.py │ └── tests │ │ ├── __init__.py │ │ ├── test_download_data.py │ │ ├── test_rrlyrae.py │ │ └── test_rrlyrae_generated.py ├── periodic │ ├── __init__.py │ ├── _least_squares_mixin.py │ ├── lomb_scargle.py │ ├── lomb_scargle_fast.py │ ├── lomb_scargle_multiband.py │ ├── modeler.py │ ├── naive_multiband.py │ ├── optimizer.py │ ├── supersmoother.py │ ├── template_modeler.py │ ├── tests │ │ ├── __init__.py │ │ ├── test_base_modeler.py │ │ ├── test_lomb_scargle.py │ │ ├── test_lomb_scargle_fast.py │ │ ├── test_lomb_scargle_multiband.py │ │ ├── test_optimizer.py │ │ ├── test_supersmoother.py │ │ ├── test_templates.py │ │ └── test_trended_lomb_scargle.py │ └── trended_lomb_scargle.py └── tests │ └── __init__.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | build/ 3 | dist/ 4 | MANIFEST 5 | 6 | .coverage 7 | 8 | #* 9 | *~ 10 | 11 | .ipynb_checkpoints -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astroML/gatspy/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astroML/gatspy/HEAD/CHANGES.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astroML/gatspy/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astroML/gatspy/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astroML/gatspy/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astroML/gatspy/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE_HOWTO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astroML/gatspy/HEAD/RELEASE_HOWTO.md -------------------------------------------------------------------------------- /doc/.gitignore: -------------------------------------------------------------------------------- 1 | _build -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astroML/gatspy/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astroML/gatspy/HEAD/doc/conf.py -------------------------------------------------------------------------------- /doc/datasets/API.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astroML/gatspy/HEAD/doc/datasets/API.rst -------------------------------------------------------------------------------- /doc/datasets/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astroML/gatspy/HEAD/doc/datasets/index.rst -------------------------------------------------------------------------------- /doc/datasets/rrlyrae.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astroML/gatspy/HEAD/doc/datasets/rrlyrae.rst -------------------------------------------------------------------------------- /doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astroML/gatspy/HEAD/doc/index.rst -------------------------------------------------------------------------------- /doc/periodic/API.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astroML/gatspy/HEAD/doc/periodic/API.rst -------------------------------------------------------------------------------- /doc/periodic/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astroML/gatspy/HEAD/doc/periodic/index.rst -------------------------------------------------------------------------------- /doc/periodic/lomb_scargle.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astroML/gatspy/HEAD/doc/periodic/lomb_scargle.rst -------------------------------------------------------------------------------- /doc/periodic/lomb_scargle_multiband.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astroML/gatspy/HEAD/doc/periodic/lomb_scargle_multiband.rst -------------------------------------------------------------------------------- /doc/periodic/supersmoother.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astroML/gatspy/HEAD/doc/periodic/supersmoother.rst -------------------------------------------------------------------------------- /doc/periodic/template.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astroML/gatspy/HEAD/doc/periodic/template.rst -------------------------------------------------------------------------------- /doc/periodic/trended_lomb_scargle.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astroML/gatspy/HEAD/doc/periodic/trended_lomb_scargle.rst -------------------------------------------------------------------------------- /doc/sphinxext/numpy_ext/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astroML/gatspy/HEAD/doc/sphinxext/numpy_ext/__init__.py -------------------------------------------------------------------------------- /doc/sphinxext/numpy_ext/astropyautosummary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astroML/gatspy/HEAD/doc/sphinxext/numpy_ext/astropyautosummary.py -------------------------------------------------------------------------------- /doc/sphinxext/numpy_ext/autodoc_enhancements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astroML/gatspy/HEAD/doc/sphinxext/numpy_ext/autodoc_enhancements.py -------------------------------------------------------------------------------- /doc/sphinxext/numpy_ext/automodapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astroML/gatspy/HEAD/doc/sphinxext/numpy_ext/automodapi.py -------------------------------------------------------------------------------- /doc/sphinxext/numpy_ext/automodsumm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astroML/gatspy/HEAD/doc/sphinxext/numpy_ext/automodsumm.py -------------------------------------------------------------------------------- /doc/sphinxext/numpy_ext/changelog_links.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astroML/gatspy/HEAD/doc/sphinxext/numpy_ext/changelog_links.py -------------------------------------------------------------------------------- /doc/sphinxext/numpy_ext/comment_eater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astroML/gatspy/HEAD/doc/sphinxext/numpy_ext/comment_eater.py -------------------------------------------------------------------------------- /doc/sphinxext/numpy_ext/compiler_unparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astroML/gatspy/HEAD/doc/sphinxext/numpy_ext/compiler_unparse.py -------------------------------------------------------------------------------- /doc/sphinxext/numpy_ext/docscrape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astroML/gatspy/HEAD/doc/sphinxext/numpy_ext/docscrape.py -------------------------------------------------------------------------------- /doc/sphinxext/numpy_ext/docscrape_sphinx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astroML/gatspy/HEAD/doc/sphinxext/numpy_ext/docscrape_sphinx.py -------------------------------------------------------------------------------- /doc/sphinxext/numpy_ext/doctest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astroML/gatspy/HEAD/doc/sphinxext/numpy_ext/doctest.py -------------------------------------------------------------------------------- /doc/sphinxext/numpy_ext/edit_on_github.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astroML/gatspy/HEAD/doc/sphinxext/numpy_ext/edit_on_github.py -------------------------------------------------------------------------------- /doc/sphinxext/numpy_ext/numpydoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astroML/gatspy/HEAD/doc/sphinxext/numpy_ext/numpydoc.py -------------------------------------------------------------------------------- /doc/sphinxext/numpy_ext/phantom_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astroML/gatspy/HEAD/doc/sphinxext/numpy_ext/phantom_import.py -------------------------------------------------------------------------------- /doc/sphinxext/numpy_ext/smart_resolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astroML/gatspy/HEAD/doc/sphinxext/numpy_ext/smart_resolver.py -------------------------------------------------------------------------------- /doc/sphinxext/numpy_ext/tocdepthfix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astroML/gatspy/HEAD/doc/sphinxext/numpy_ext/tocdepthfix.py -------------------------------------------------------------------------------- /doc/sphinxext/numpy_ext/traitsdoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astroML/gatspy/HEAD/doc/sphinxext/numpy_ext/traitsdoc.py -------------------------------------------------------------------------------- /doc/sphinxext/numpy_ext/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astroML/gatspy/HEAD/doc/sphinxext/numpy_ext/utils.py -------------------------------------------------------------------------------- /doc/sphinxext/numpy_ext/viewcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astroML/gatspy/HEAD/doc/sphinxext/numpy_ext/viewcode.py -------------------------------------------------------------------------------- /examples/FastLombScargle.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astroML/gatspy/HEAD/examples/FastLombScargle.ipynb -------------------------------------------------------------------------------- /examples/Index.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astroML/gatspy/HEAD/examples/Index.ipynb -------------------------------------------------------------------------------- /examples/MultiBand.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astroML/gatspy/HEAD/examples/MultiBand.ipynb -------------------------------------------------------------------------------- /examples/SingleBand.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astroML/gatspy/HEAD/examples/SingleBand.ipynb -------------------------------------------------------------------------------- /gatspy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astroML/gatspy/HEAD/gatspy/__init__.py -------------------------------------------------------------------------------- /gatspy/datasets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astroML/gatspy/HEAD/gatspy/datasets/__init__.py -------------------------------------------------------------------------------- /gatspy/datasets/rrlyrae.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astroML/gatspy/HEAD/gatspy/datasets/rrlyrae.py -------------------------------------------------------------------------------- /gatspy/datasets/rrlyrae_generated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astroML/gatspy/HEAD/gatspy/datasets/rrlyrae_generated.py -------------------------------------------------------------------------------- /gatspy/datasets/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gatspy/datasets/tests/test_download_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astroML/gatspy/HEAD/gatspy/datasets/tests/test_download_data.py -------------------------------------------------------------------------------- /gatspy/datasets/tests/test_rrlyrae.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astroML/gatspy/HEAD/gatspy/datasets/tests/test_rrlyrae.py -------------------------------------------------------------------------------- /gatspy/datasets/tests/test_rrlyrae_generated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astroML/gatspy/HEAD/gatspy/datasets/tests/test_rrlyrae_generated.py -------------------------------------------------------------------------------- /gatspy/periodic/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astroML/gatspy/HEAD/gatspy/periodic/__init__.py -------------------------------------------------------------------------------- /gatspy/periodic/_least_squares_mixin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astroML/gatspy/HEAD/gatspy/periodic/_least_squares_mixin.py -------------------------------------------------------------------------------- /gatspy/periodic/lomb_scargle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astroML/gatspy/HEAD/gatspy/periodic/lomb_scargle.py -------------------------------------------------------------------------------- /gatspy/periodic/lomb_scargle_fast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astroML/gatspy/HEAD/gatspy/periodic/lomb_scargle_fast.py -------------------------------------------------------------------------------- /gatspy/periodic/lomb_scargle_multiband.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astroML/gatspy/HEAD/gatspy/periodic/lomb_scargle_multiband.py -------------------------------------------------------------------------------- /gatspy/periodic/modeler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astroML/gatspy/HEAD/gatspy/periodic/modeler.py -------------------------------------------------------------------------------- /gatspy/periodic/naive_multiband.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astroML/gatspy/HEAD/gatspy/periodic/naive_multiband.py -------------------------------------------------------------------------------- /gatspy/periodic/optimizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astroML/gatspy/HEAD/gatspy/periodic/optimizer.py -------------------------------------------------------------------------------- /gatspy/periodic/supersmoother.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astroML/gatspy/HEAD/gatspy/periodic/supersmoother.py -------------------------------------------------------------------------------- /gatspy/periodic/template_modeler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astroML/gatspy/HEAD/gatspy/periodic/template_modeler.py -------------------------------------------------------------------------------- /gatspy/periodic/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gatspy/periodic/tests/test_base_modeler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astroML/gatspy/HEAD/gatspy/periodic/tests/test_base_modeler.py -------------------------------------------------------------------------------- /gatspy/periodic/tests/test_lomb_scargle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astroML/gatspy/HEAD/gatspy/periodic/tests/test_lomb_scargle.py -------------------------------------------------------------------------------- /gatspy/periodic/tests/test_lomb_scargle_fast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astroML/gatspy/HEAD/gatspy/periodic/tests/test_lomb_scargle_fast.py -------------------------------------------------------------------------------- /gatspy/periodic/tests/test_lomb_scargle_multiband.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astroML/gatspy/HEAD/gatspy/periodic/tests/test_lomb_scargle_multiband.py -------------------------------------------------------------------------------- /gatspy/periodic/tests/test_optimizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astroML/gatspy/HEAD/gatspy/periodic/tests/test_optimizer.py -------------------------------------------------------------------------------- /gatspy/periodic/tests/test_supersmoother.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astroML/gatspy/HEAD/gatspy/periodic/tests/test_supersmoother.py -------------------------------------------------------------------------------- /gatspy/periodic/tests/test_templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astroML/gatspy/HEAD/gatspy/periodic/tests/test_templates.py -------------------------------------------------------------------------------- /gatspy/periodic/tests/test_trended_lomb_scargle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astroML/gatspy/HEAD/gatspy/periodic/tests/test_trended_lomb_scargle.py -------------------------------------------------------------------------------- /gatspy/periodic/trended_lomb_scargle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astroML/gatspy/HEAD/gatspy/periodic/trended_lomb_scargle.py -------------------------------------------------------------------------------- /gatspy/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astroML/gatspy/HEAD/setup.py --------------------------------------------------------------------------------