gitextract_agenpta6/ ├── .gitattributes ├── .github/ │ └── workflows/ │ └── tests.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yaml ├── .vscode/ │ ├── extensions.json │ ├── launch.json │ ├── settings.json │ └── tasks.json ├── CONTRIBUTING.md ├── LICENCE.txt ├── MANIFEST.in ├── README.rst ├── codemeta.json ├── docs/ │ ├── index.html │ ├── markdown_builder.py │ ├── plot_gallery.html │ ├── plot_gallery.ipynb │ └── source/ │ ├── analysis_settings.rst │ ├── arviz_integration.rst │ ├── chains.rst │ ├── conf.py │ ├── covmat.rst │ ├── densities.rst │ ├── gaussian_mixtures.rst │ ├── gui.rst │ ├── index.rst │ ├── inifile.rst │ ├── intro.rst │ ├── mcsamples.rst │ ├── paramnames.rst │ ├── parampriors.rst │ ├── plots.rst │ └── types.rst ├── getdist/ │ ├── analysis_defaults.ini │ ├── arviz_wrapper.py │ ├── chain_grid.py │ ├── chains.py │ ├── cobaya_interface.py │ ├── command_line.py │ ├── convolve.py │ ├── covcomb.py │ ├── covmat.py │ ├── covscale.py │ ├── densities.py │ ├── distparam_template.ini │ ├── gaussian_mixtures.py │ ├── gui/ │ │ ├── SyntaxHighlight.py │ │ ├── images/ │ │ │ └── GetDistGUI.icns │ │ ├── mainwindow.py │ │ └── streamlit_app.py │ ├── inifile.py │ ├── kde_bandwidth.py │ ├── matplotlib_ext.py │ ├── mcsamples.py │ ├── paramnames.py │ ├── parampriors.py │ ├── plots.py │ ├── styles/ │ │ ├── planck.paramnames │ │ ├── planck.py │ │ ├── sfmath.sty │ │ └── tab10.py │ ├── tests/ │ │ ├── getdist_test.py │ │ ├── test_arviz_wrapper.py │ │ └── test_distributions.py │ ├── types.py │ └── yaml_tools.py ├── pyproject.toml ├── requirements.txt ├── scripts/ │ ├── create_mac_dmg.sh │ ├── create_windows_msi.py │ ├── fix_qt_bundle_ambiguity.sh │ ├── fix_qt_frameworks.sh │ ├── multiprocessing_hook.py │ ├── notarize_mac_app.sh │ ├── run_plot_gallery.py │ ├── sign_mac_app.sh │ └── sign_windows_app.py └── setup.py