├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── usage-question.md ├── pull_request_template.md └── workflows │ ├── post-release.yml │ ├── publish-to-test-pypi.yml │ └── test.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yaml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── docs ├── Makefile ├── _templates │ └── autosummary │ │ ├── class.rst │ │ └── function.rst ├── api │ └── index.rst ├── changelog.rst ├── conf.py ├── contributing.rst ├── examples.rst ├── examples │ ├── gallery │ │ └── sbc.md │ └── img │ │ └── sbc.png ├── index.rst ├── installation.rst └── make.bat ├── ecdf.png ├── environment-dev.yml ├── environment.yml ├── pyproject.toml ├── requirements-dev.txt ├── requirements-docs.txt └── simuk ├── __init__.py ├── sbc.py └── tests └── test_sbc.py /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/simuk/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/simuk/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/usage-question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/simuk/HEAD/.github/ISSUE_TEMPLATE/usage-question.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/simuk/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/post-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/simuk/HEAD/.github/workflows/post-release.yml -------------------------------------------------------------------------------- /.github/workflows/publish-to-test-pypi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/simuk/HEAD/.github/workflows/publish-to-test-pypi.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/simuk/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/simuk/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/simuk/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/simuk/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/simuk/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/simuk/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/simuk/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/simuk/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/simuk/HEAD/README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/simuk/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_templates/autosummary/class.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/simuk/HEAD/docs/_templates/autosummary/class.rst -------------------------------------------------------------------------------- /docs/_templates/autosummary/function.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/simuk/HEAD/docs/_templates/autosummary/function.rst -------------------------------------------------------------------------------- /docs/api/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/simuk/HEAD/docs/api/index.rst -------------------------------------------------------------------------------- /docs/changelog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/simuk/HEAD/docs/changelog.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/simuk/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contributing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/simuk/HEAD/docs/contributing.rst -------------------------------------------------------------------------------- /docs/examples.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/simuk/HEAD/docs/examples.rst -------------------------------------------------------------------------------- /docs/examples/gallery/sbc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/simuk/HEAD/docs/examples/gallery/sbc.md -------------------------------------------------------------------------------- /docs/examples/img/sbc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/simuk/HEAD/docs/examples/img/sbc.png -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/simuk/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/simuk/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/simuk/HEAD/docs/make.bat -------------------------------------------------------------------------------- /ecdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/simuk/HEAD/ecdf.png -------------------------------------------------------------------------------- /environment-dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/simuk/HEAD/environment-dev.yml -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/simuk/HEAD/environment.yml -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/simuk/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/simuk/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /requirements-docs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/simuk/HEAD/requirements-docs.txt -------------------------------------------------------------------------------- /simuk/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/simuk/HEAD/simuk/__init__.py -------------------------------------------------------------------------------- /simuk/sbc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/simuk/HEAD/simuk/sbc.py -------------------------------------------------------------------------------- /simuk/tests/test_sbc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/simuk/HEAD/simuk/tests/test_sbc.py --------------------------------------------------------------------------------