├── .gitignore ├── LICENSE ├── README.md ├── examples ├── imf_examples.ipynb └── imf_examples.py ├── nuts ├── __init__.py ├── emcee_nuts.py ├── helpers.py └── nuts.py ├── requirements.txt └── setup.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.py[oc] 2 | *.sw[po] 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfouesneau/NUTS/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfouesneau/NUTS/HEAD/README.md -------------------------------------------------------------------------------- /examples/imf_examples.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfouesneau/NUTS/HEAD/examples/imf_examples.ipynb -------------------------------------------------------------------------------- /examples/imf_examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfouesneau/NUTS/HEAD/examples/imf_examples.py -------------------------------------------------------------------------------- /nuts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfouesneau/NUTS/HEAD/nuts/__init__.py -------------------------------------------------------------------------------- /nuts/emcee_nuts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfouesneau/NUTS/HEAD/nuts/emcee_nuts.py -------------------------------------------------------------------------------- /nuts/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfouesneau/NUTS/HEAD/nuts/helpers.py -------------------------------------------------------------------------------- /nuts/nuts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfouesneau/NUTS/HEAD/nuts/nuts.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | numpy 2 | scipy 3 | matplotlib 4 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfouesneau/NUTS/HEAD/setup.py --------------------------------------------------------------------------------