├── .coveragerc ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── custom.md │ └── feature_request.md └── workflows │ ├── ci.yml │ └── release.yml ├── .gitignore ├── .zenodo.json ├── CITATION.cff ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── PULL_REQUEST_TEMPLATE.md ├── README.md ├── appveyor.yml ├── docs ├── Makefile ├── make.bat ├── requirements.txt └── source │ ├── _static │ └── custom.css │ ├── api.rst │ ├── axis.rst │ ├── conf.py │ ├── custom_priors.ipynb │ ├── distribution.rst │ ├── faq.rst │ ├── getting_started.ipynb │ ├── index.rst │ ├── input_functions.ipynb │ ├── installation.rst │ ├── logo │ ├── uravu_logo.png │ └── uravu_logo.svg │ ├── max_likelihood.ipynb │ ├── mcmc.ipynb │ ├── nested_sampling.ipynb │ ├── optimize.rst │ ├── plotting.rst │ ├── relationship.rst │ ├── sample_fig.png │ ├── sampling.rst │ ├── tutorials.rst │ ├── using_distributions.ipynb │ └── utils.rst ├── paper ├── paper.bib └── paper.md ├── requirements.txt ├── setup.py └── uravu ├── __init__.py ├── _fig_params.py ├── axis.py ├── distribution.py ├── optimize.py ├── plotting.py ├── relationship.py ├── sampling.py ├── tests ├── __init__.py ├── test_axis.py ├── test_distribution.py ├── test_optimize.py ├── test_relationship.py ├── test_sampling.py └── test_utils.py └── utils.py /.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | relative_files = True 3 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arm61/uravu/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arm61/uravu/HEAD/.github/ISSUE_TEMPLATE/custom.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arm61/uravu/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arm61/uravu/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arm61/uravu/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arm61/uravu/HEAD/.gitignore -------------------------------------------------------------------------------- /.zenodo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arm61/uravu/HEAD/.zenodo.json -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arm61/uravu/HEAD/CITATION.cff -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arm61/uravu/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arm61/uravu/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arm61/uravu/HEAD/LICENSE -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arm61/uravu/HEAD/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arm61/uravu/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arm61/uravu/HEAD/appveyor.yml -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arm61/uravu/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arm61/uravu/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arm61/uravu/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/source/_static/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arm61/uravu/HEAD/docs/source/_static/custom.css -------------------------------------------------------------------------------- /docs/source/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arm61/uravu/HEAD/docs/source/api.rst -------------------------------------------------------------------------------- /docs/source/axis.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arm61/uravu/HEAD/docs/source/axis.rst -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arm61/uravu/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/custom_priors.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arm61/uravu/HEAD/docs/source/custom_priors.ipynb -------------------------------------------------------------------------------- /docs/source/distribution.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arm61/uravu/HEAD/docs/source/distribution.rst -------------------------------------------------------------------------------- /docs/source/faq.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arm61/uravu/HEAD/docs/source/faq.rst -------------------------------------------------------------------------------- /docs/source/getting_started.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arm61/uravu/HEAD/docs/source/getting_started.ipynb -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arm61/uravu/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/input_functions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arm61/uravu/HEAD/docs/source/input_functions.ipynb -------------------------------------------------------------------------------- /docs/source/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arm61/uravu/HEAD/docs/source/installation.rst -------------------------------------------------------------------------------- /docs/source/logo/uravu_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arm61/uravu/HEAD/docs/source/logo/uravu_logo.png -------------------------------------------------------------------------------- /docs/source/logo/uravu_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arm61/uravu/HEAD/docs/source/logo/uravu_logo.svg -------------------------------------------------------------------------------- /docs/source/max_likelihood.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arm61/uravu/HEAD/docs/source/max_likelihood.ipynb -------------------------------------------------------------------------------- /docs/source/mcmc.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arm61/uravu/HEAD/docs/source/mcmc.ipynb -------------------------------------------------------------------------------- /docs/source/nested_sampling.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arm61/uravu/HEAD/docs/source/nested_sampling.ipynb -------------------------------------------------------------------------------- /docs/source/optimize.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arm61/uravu/HEAD/docs/source/optimize.rst -------------------------------------------------------------------------------- /docs/source/plotting.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arm61/uravu/HEAD/docs/source/plotting.rst -------------------------------------------------------------------------------- /docs/source/relationship.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arm61/uravu/HEAD/docs/source/relationship.rst -------------------------------------------------------------------------------- /docs/source/sample_fig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arm61/uravu/HEAD/docs/source/sample_fig.png -------------------------------------------------------------------------------- /docs/source/sampling.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arm61/uravu/HEAD/docs/source/sampling.rst -------------------------------------------------------------------------------- /docs/source/tutorials.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arm61/uravu/HEAD/docs/source/tutorials.rst -------------------------------------------------------------------------------- /docs/source/using_distributions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arm61/uravu/HEAD/docs/source/using_distributions.ipynb -------------------------------------------------------------------------------- /docs/source/utils.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arm61/uravu/HEAD/docs/source/utils.rst -------------------------------------------------------------------------------- /paper/paper.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arm61/uravu/HEAD/paper/paper.bib -------------------------------------------------------------------------------- /paper/paper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arm61/uravu/HEAD/paper/paper.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arm61/uravu/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arm61/uravu/HEAD/setup.py -------------------------------------------------------------------------------- /uravu/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arm61/uravu/HEAD/uravu/__init__.py -------------------------------------------------------------------------------- /uravu/_fig_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arm61/uravu/HEAD/uravu/_fig_params.py -------------------------------------------------------------------------------- /uravu/axis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arm61/uravu/HEAD/uravu/axis.py -------------------------------------------------------------------------------- /uravu/distribution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arm61/uravu/HEAD/uravu/distribution.py -------------------------------------------------------------------------------- /uravu/optimize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arm61/uravu/HEAD/uravu/optimize.py -------------------------------------------------------------------------------- /uravu/plotting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arm61/uravu/HEAD/uravu/plotting.py -------------------------------------------------------------------------------- /uravu/relationship.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arm61/uravu/HEAD/uravu/relationship.py -------------------------------------------------------------------------------- /uravu/sampling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arm61/uravu/HEAD/uravu/sampling.py -------------------------------------------------------------------------------- /uravu/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /uravu/tests/test_axis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arm61/uravu/HEAD/uravu/tests/test_axis.py -------------------------------------------------------------------------------- /uravu/tests/test_distribution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arm61/uravu/HEAD/uravu/tests/test_distribution.py -------------------------------------------------------------------------------- /uravu/tests/test_optimize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arm61/uravu/HEAD/uravu/tests/test_optimize.py -------------------------------------------------------------------------------- /uravu/tests/test_relationship.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arm61/uravu/HEAD/uravu/tests/test_relationship.py -------------------------------------------------------------------------------- /uravu/tests/test_sampling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arm61/uravu/HEAD/uravu/tests/test_sampling.py -------------------------------------------------------------------------------- /uravu/tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arm61/uravu/HEAD/uravu/tests/test_utils.py -------------------------------------------------------------------------------- /uravu/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arm61/uravu/HEAD/uravu/utils.py --------------------------------------------------------------------------------