├── .github └── workflows │ └── python-package.yml ├── .gitignore ├── .readthedocs.yml ├── CONTRIBUTING.md ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.md ├── docs ├── Makefile ├── _static │ └── .gitignore ├── api.rst ├── conf.py ├── contributing.rst ├── docs_requirements.txt ├── figures │ ├── quad_bestfit.png │ ├── quad_fitting.png │ ├── quad_hist.png │ ├── quad_pairwise.png │ ├── quad_trace.png │ └── rms-vs-binsize.png ├── fit_tutorial.rst ├── get_started.rst ├── index.rst ├── latex │ └── .gitignore ├── license.rst ├── make.bat ├── mcmc_tutorial.rst ├── references.rst └── time_averaging.rst ├── examples ├── get_started.py ├── timeavg.py └── tutorial.py ├── mc3 ├── __init__.py ├── __main__.py ├── chain.py ├── fit_driver.py ├── lib │ └── .gitignore ├── mcmc_driver.py ├── plots │ ├── __init__.py │ ├── colors.py │ ├── plot_functions.py │ └── posterior.py ├── sampler_driver.py ├── stats │ ├── __init__.py │ ├── gelman.py │ ├── prayer.py │ ├── stats.py │ └── time_averaging.py ├── utils │ ├── __init__.py │ ├── log.py │ └── utils.py └── version.py ├── pyproject.toml ├── pytest.ini ├── requirements.txt ├── setup.py ├── src_c ├── _binarray.c ├── _chisq.c ├── _dwt.c ├── _time_averaging.c └── include │ ├── ind.h │ ├── stats.h │ └── wavelet.h └── tests ├── test_fit.py ├── test_logging.py ├── test_mcmc.py ├── test_plots.py ├── test_stats.py └── test_utils.py /.github/workflows/python-package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcubillos/mc3/HEAD/.github/workflows/python-package.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcubillos/mc3/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcubillos/mc3/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcubillos/mc3/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcubillos/mc3/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcubillos/mc3/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcubillos/mc3/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcubillos/mc3/HEAD/README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcubillos/mc3/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcubillos/mc3/HEAD/docs/_static/.gitignore -------------------------------------------------------------------------------- /docs/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcubillos/mc3/HEAD/docs/api.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcubillos/mc3/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contributing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcubillos/mc3/HEAD/docs/contributing.rst -------------------------------------------------------------------------------- /docs/docs_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcubillos/mc3/HEAD/docs/docs_requirements.txt -------------------------------------------------------------------------------- /docs/figures/quad_bestfit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcubillos/mc3/HEAD/docs/figures/quad_bestfit.png -------------------------------------------------------------------------------- /docs/figures/quad_fitting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcubillos/mc3/HEAD/docs/figures/quad_fitting.png -------------------------------------------------------------------------------- /docs/figures/quad_hist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcubillos/mc3/HEAD/docs/figures/quad_hist.png -------------------------------------------------------------------------------- /docs/figures/quad_pairwise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcubillos/mc3/HEAD/docs/figures/quad_pairwise.png -------------------------------------------------------------------------------- /docs/figures/quad_trace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcubillos/mc3/HEAD/docs/figures/quad_trace.png -------------------------------------------------------------------------------- /docs/figures/rms-vs-binsize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcubillos/mc3/HEAD/docs/figures/rms-vs-binsize.png -------------------------------------------------------------------------------- /docs/fit_tutorial.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcubillos/mc3/HEAD/docs/fit_tutorial.rst -------------------------------------------------------------------------------- /docs/get_started.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcubillos/mc3/HEAD/docs/get_started.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcubillos/mc3/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/latex/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcubillos/mc3/HEAD/docs/latex/.gitignore -------------------------------------------------------------------------------- /docs/license.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcubillos/mc3/HEAD/docs/license.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcubillos/mc3/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/mcmc_tutorial.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcubillos/mc3/HEAD/docs/mcmc_tutorial.rst -------------------------------------------------------------------------------- /docs/references.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcubillos/mc3/HEAD/docs/references.rst -------------------------------------------------------------------------------- /docs/time_averaging.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcubillos/mc3/HEAD/docs/time_averaging.rst -------------------------------------------------------------------------------- /examples/get_started.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcubillos/mc3/HEAD/examples/get_started.py -------------------------------------------------------------------------------- /examples/timeavg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcubillos/mc3/HEAD/examples/timeavg.py -------------------------------------------------------------------------------- /examples/tutorial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcubillos/mc3/HEAD/examples/tutorial.py -------------------------------------------------------------------------------- /mc3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcubillos/mc3/HEAD/mc3/__init__.py -------------------------------------------------------------------------------- /mc3/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcubillos/mc3/HEAD/mc3/__main__.py -------------------------------------------------------------------------------- /mc3/chain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcubillos/mc3/HEAD/mc3/chain.py -------------------------------------------------------------------------------- /mc3/fit_driver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcubillos/mc3/HEAD/mc3/fit_driver.py -------------------------------------------------------------------------------- /mc3/lib/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcubillos/mc3/HEAD/mc3/lib/.gitignore -------------------------------------------------------------------------------- /mc3/mcmc_driver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcubillos/mc3/HEAD/mc3/mcmc_driver.py -------------------------------------------------------------------------------- /mc3/plots/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcubillos/mc3/HEAD/mc3/plots/__init__.py -------------------------------------------------------------------------------- /mc3/plots/colors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcubillos/mc3/HEAD/mc3/plots/colors.py -------------------------------------------------------------------------------- /mc3/plots/plot_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcubillos/mc3/HEAD/mc3/plots/plot_functions.py -------------------------------------------------------------------------------- /mc3/plots/posterior.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcubillos/mc3/HEAD/mc3/plots/posterior.py -------------------------------------------------------------------------------- /mc3/sampler_driver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcubillos/mc3/HEAD/mc3/sampler_driver.py -------------------------------------------------------------------------------- /mc3/stats/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcubillos/mc3/HEAD/mc3/stats/__init__.py -------------------------------------------------------------------------------- /mc3/stats/gelman.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcubillos/mc3/HEAD/mc3/stats/gelman.py -------------------------------------------------------------------------------- /mc3/stats/prayer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcubillos/mc3/HEAD/mc3/stats/prayer.py -------------------------------------------------------------------------------- /mc3/stats/stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcubillos/mc3/HEAD/mc3/stats/stats.py -------------------------------------------------------------------------------- /mc3/stats/time_averaging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcubillos/mc3/HEAD/mc3/stats/time_averaging.py -------------------------------------------------------------------------------- /mc3/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcubillos/mc3/HEAD/mc3/utils/__init__.py -------------------------------------------------------------------------------- /mc3/utils/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcubillos/mc3/HEAD/mc3/utils/log.py -------------------------------------------------------------------------------- /mc3/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcubillos/mc3/HEAD/mc3/utils/utils.py -------------------------------------------------------------------------------- /mc3/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcubillos/mc3/HEAD/mc3/version.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcubillos/mc3/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcubillos/mc3/HEAD/pytest.ini -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcubillos/mc3/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcubillos/mc3/HEAD/setup.py -------------------------------------------------------------------------------- /src_c/_binarray.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcubillos/mc3/HEAD/src_c/_binarray.c -------------------------------------------------------------------------------- /src_c/_chisq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcubillos/mc3/HEAD/src_c/_chisq.c -------------------------------------------------------------------------------- /src_c/_dwt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcubillos/mc3/HEAD/src_c/_dwt.c -------------------------------------------------------------------------------- /src_c/_time_averaging.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcubillos/mc3/HEAD/src_c/_time_averaging.c -------------------------------------------------------------------------------- /src_c/include/ind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcubillos/mc3/HEAD/src_c/include/ind.h -------------------------------------------------------------------------------- /src_c/include/stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcubillos/mc3/HEAD/src_c/include/stats.h -------------------------------------------------------------------------------- /src_c/include/wavelet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcubillos/mc3/HEAD/src_c/include/wavelet.h -------------------------------------------------------------------------------- /tests/test_fit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcubillos/mc3/HEAD/tests/test_fit.py -------------------------------------------------------------------------------- /tests/test_logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcubillos/mc3/HEAD/tests/test_logging.py -------------------------------------------------------------------------------- /tests/test_mcmc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcubillos/mc3/HEAD/tests/test_mcmc.py -------------------------------------------------------------------------------- /tests/test_plots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcubillos/mc3/HEAD/tests/test_plots.py -------------------------------------------------------------------------------- /tests/test_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcubillos/mc3/HEAD/tests/test_stats.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcubillos/mc3/HEAD/tests/test_utils.py --------------------------------------------------------------------------------