├── .gitignore ├── .readthedocs.yaml ├── LICENSE ├── README.rst ├── docs ├── Makefile ├── api.rst ├── code_example.rst ├── conf.py ├── index.rst ├── installation.rst ├── intro.rst ├── requirements.rst ├── source_code.rst └── usage.rst ├── pyproject.toml ├── src └── mixedvines │ ├── __init__.py │ ├── _utils.py │ ├── copula.py │ ├── marginal.py │ └── mixedvine.py └── tests ├── __init__.py ├── test_copula.py ├── test_marginal.py └── test_mixedvine.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asnelt/mixedvines/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asnelt/mixedvines/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asnelt/mixedvines/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asnelt/mixedvines/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asnelt/mixedvines/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asnelt/mixedvines/HEAD/docs/api.rst -------------------------------------------------------------------------------- /docs/code_example.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asnelt/mixedvines/HEAD/docs/code_example.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asnelt/mixedvines/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asnelt/mixedvines/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asnelt/mixedvines/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/intro.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asnelt/mixedvines/HEAD/docs/intro.rst -------------------------------------------------------------------------------- /docs/requirements.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asnelt/mixedvines/HEAD/docs/requirements.rst -------------------------------------------------------------------------------- /docs/source_code.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asnelt/mixedvines/HEAD/docs/source_code.rst -------------------------------------------------------------------------------- /docs/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asnelt/mixedvines/HEAD/docs/usage.rst -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asnelt/mixedvines/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/mixedvines/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asnelt/mixedvines/HEAD/src/mixedvines/__init__.py -------------------------------------------------------------------------------- /src/mixedvines/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asnelt/mixedvines/HEAD/src/mixedvines/_utils.py -------------------------------------------------------------------------------- /src/mixedvines/copula.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asnelt/mixedvines/HEAD/src/mixedvines/copula.py -------------------------------------------------------------------------------- /src/mixedvines/marginal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asnelt/mixedvines/HEAD/src/mixedvines/marginal.py -------------------------------------------------------------------------------- /src/mixedvines/mixedvine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asnelt/mixedvines/HEAD/src/mixedvines/mixedvine.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_copula.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asnelt/mixedvines/HEAD/tests/test_copula.py -------------------------------------------------------------------------------- /tests/test_marginal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asnelt/mixedvines/HEAD/tests/test_marginal.py -------------------------------------------------------------------------------- /tests/test_mixedvine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asnelt/mixedvines/HEAD/tests/test_mixedvine.py --------------------------------------------------------------------------------