├── .github └── workflows │ └── pythonpackage.yml ├── .gitignore ├── .readthedocs.yaml ├── CHANGELOG.rst ├── LICENSE.txt ├── Planck-vs-WMAP.ipynb ├── README.rst ├── convert_notebooks.sh ├── demo.ipynb ├── docs ├── Makefile ├── Planck-vs-WMAP.rst ├── _static │ ├── Planck-vs-WMAP_files │ │ ├── Planck-vs-WMAP_10_0.png │ │ └── Planck-vs-WMAP_9_0.png │ └── demo_files │ │ ├── demo_10_0.png │ │ ├── demo_10_1.png │ │ ├── demo_11_0.png │ │ ├── demo_11_1.png │ │ ├── demo_12_0.png │ │ ├── demo_12_1.png │ │ ├── demo_13_0.png │ │ ├── demo_13_1.png │ │ ├── demo_14_0.png │ │ ├── demo_14_1.png │ │ ├── demo_15_0.png │ │ ├── demo_16_0.png │ │ ├── demo_7_0.png │ │ ├── demo_7_1.png │ │ ├── demo_8_1.png │ │ ├── demo_9_0.png │ │ └── demo_9_1.png ├── api.rst ├── conf.py ├── demo.rst ├── index.rst └── installation.rst ├── paper ├── GTC.png ├── paper.bib └── paper.md ├── pygtc ├── VERSION.txt ├── __init__.py ├── pygtc.py └── tests │ ├── __init__.py │ ├── baseline │ ├── bare.png │ ├── chainLabels_noTex.png │ ├── chainLabels_withTex.png │ ├── colorsOrder.png │ ├── do1dPlots.png │ ├── doOnly1dPlot.png │ ├── figureSize.png │ ├── filledPlots.png │ ├── img.png │ ├── labelRotation.png │ ├── mathTextFontSet.png │ ├── nBins.png │ ├── nContourLevels.png │ ├── pandas.png │ ├── panelSpacing.png │ ├── paramNames_noTex.png │ ├── paramNames_withTex.png │ ├── plotDensity.png │ ├── priors.png │ ├── sigmaContourLevels.png │ ├── smoothingKernel.png │ ├── tickShifts.png │ ├── truthLabels_noTex.png │ ├── truthLabels_withTex.png │ ├── truthLineStyles.png │ └── truthLineStyles_withLegend.png │ └── test_plotGTC.py ├── requirements.txt ├── rtd_environment.yml ├── setup.cfg ├── setup.py └── test-environment.yml /.github/workflows/pythonpackage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastianBocquet/pygtc/HEAD/.github/workflows/pythonpackage.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastianBocquet/pygtc/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastianBocquet/pygtc/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastianBocquet/pygtc/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastianBocquet/pygtc/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Planck-vs-WMAP.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastianBocquet/pygtc/HEAD/Planck-vs-WMAP.ipynb -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastianBocquet/pygtc/HEAD/README.rst -------------------------------------------------------------------------------- /convert_notebooks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastianBocquet/pygtc/HEAD/convert_notebooks.sh -------------------------------------------------------------------------------- /demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastianBocquet/pygtc/HEAD/demo.ipynb -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastianBocquet/pygtc/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/Planck-vs-WMAP.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastianBocquet/pygtc/HEAD/docs/Planck-vs-WMAP.rst -------------------------------------------------------------------------------- /docs/_static/Planck-vs-WMAP_files/Planck-vs-WMAP_10_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastianBocquet/pygtc/HEAD/docs/_static/Planck-vs-WMAP_files/Planck-vs-WMAP_10_0.png -------------------------------------------------------------------------------- /docs/_static/Planck-vs-WMAP_files/Planck-vs-WMAP_9_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastianBocquet/pygtc/HEAD/docs/_static/Planck-vs-WMAP_files/Planck-vs-WMAP_9_0.png -------------------------------------------------------------------------------- /docs/_static/demo_files/demo_10_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastianBocquet/pygtc/HEAD/docs/_static/demo_files/demo_10_0.png -------------------------------------------------------------------------------- /docs/_static/demo_files/demo_10_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastianBocquet/pygtc/HEAD/docs/_static/demo_files/demo_10_1.png -------------------------------------------------------------------------------- /docs/_static/demo_files/demo_11_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastianBocquet/pygtc/HEAD/docs/_static/demo_files/demo_11_0.png -------------------------------------------------------------------------------- /docs/_static/demo_files/demo_11_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastianBocquet/pygtc/HEAD/docs/_static/demo_files/demo_11_1.png -------------------------------------------------------------------------------- /docs/_static/demo_files/demo_12_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastianBocquet/pygtc/HEAD/docs/_static/demo_files/demo_12_0.png -------------------------------------------------------------------------------- /docs/_static/demo_files/demo_12_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastianBocquet/pygtc/HEAD/docs/_static/demo_files/demo_12_1.png -------------------------------------------------------------------------------- /docs/_static/demo_files/demo_13_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastianBocquet/pygtc/HEAD/docs/_static/demo_files/demo_13_0.png -------------------------------------------------------------------------------- /docs/_static/demo_files/demo_13_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastianBocquet/pygtc/HEAD/docs/_static/demo_files/demo_13_1.png -------------------------------------------------------------------------------- /docs/_static/demo_files/demo_14_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastianBocquet/pygtc/HEAD/docs/_static/demo_files/demo_14_0.png -------------------------------------------------------------------------------- /docs/_static/demo_files/demo_14_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastianBocquet/pygtc/HEAD/docs/_static/demo_files/demo_14_1.png -------------------------------------------------------------------------------- /docs/_static/demo_files/demo_15_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastianBocquet/pygtc/HEAD/docs/_static/demo_files/demo_15_0.png -------------------------------------------------------------------------------- /docs/_static/demo_files/demo_16_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastianBocquet/pygtc/HEAD/docs/_static/demo_files/demo_16_0.png -------------------------------------------------------------------------------- /docs/_static/demo_files/demo_7_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastianBocquet/pygtc/HEAD/docs/_static/demo_files/demo_7_0.png -------------------------------------------------------------------------------- /docs/_static/demo_files/demo_7_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastianBocquet/pygtc/HEAD/docs/_static/demo_files/demo_7_1.png -------------------------------------------------------------------------------- /docs/_static/demo_files/demo_8_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastianBocquet/pygtc/HEAD/docs/_static/demo_files/demo_8_1.png -------------------------------------------------------------------------------- /docs/_static/demo_files/demo_9_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastianBocquet/pygtc/HEAD/docs/_static/demo_files/demo_9_0.png -------------------------------------------------------------------------------- /docs/_static/demo_files/demo_9_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastianBocquet/pygtc/HEAD/docs/_static/demo_files/demo_9_1.png -------------------------------------------------------------------------------- /docs/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastianBocquet/pygtc/HEAD/docs/api.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastianBocquet/pygtc/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/demo.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastianBocquet/pygtc/HEAD/docs/demo.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastianBocquet/pygtc/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastianBocquet/pygtc/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /paper/GTC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastianBocquet/pygtc/HEAD/paper/GTC.png -------------------------------------------------------------------------------- /paper/paper.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastianBocquet/pygtc/HEAD/paper/paper.bib -------------------------------------------------------------------------------- /paper/paper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastianBocquet/pygtc/HEAD/paper/paper.md -------------------------------------------------------------------------------- /pygtc/VERSION.txt: -------------------------------------------------------------------------------- 1 | 0.5.0 2 | -------------------------------------------------------------------------------- /pygtc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastianBocquet/pygtc/HEAD/pygtc/__init__.py -------------------------------------------------------------------------------- /pygtc/pygtc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastianBocquet/pygtc/HEAD/pygtc/pygtc.py -------------------------------------------------------------------------------- /pygtc/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pygtc/tests/baseline/bare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastianBocquet/pygtc/HEAD/pygtc/tests/baseline/bare.png -------------------------------------------------------------------------------- /pygtc/tests/baseline/chainLabels_noTex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastianBocquet/pygtc/HEAD/pygtc/tests/baseline/chainLabels_noTex.png -------------------------------------------------------------------------------- /pygtc/tests/baseline/chainLabels_withTex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastianBocquet/pygtc/HEAD/pygtc/tests/baseline/chainLabels_withTex.png -------------------------------------------------------------------------------- /pygtc/tests/baseline/colorsOrder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastianBocquet/pygtc/HEAD/pygtc/tests/baseline/colorsOrder.png -------------------------------------------------------------------------------- /pygtc/tests/baseline/do1dPlots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastianBocquet/pygtc/HEAD/pygtc/tests/baseline/do1dPlots.png -------------------------------------------------------------------------------- /pygtc/tests/baseline/doOnly1dPlot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastianBocquet/pygtc/HEAD/pygtc/tests/baseline/doOnly1dPlot.png -------------------------------------------------------------------------------- /pygtc/tests/baseline/figureSize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastianBocquet/pygtc/HEAD/pygtc/tests/baseline/figureSize.png -------------------------------------------------------------------------------- /pygtc/tests/baseline/filledPlots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastianBocquet/pygtc/HEAD/pygtc/tests/baseline/filledPlots.png -------------------------------------------------------------------------------- /pygtc/tests/baseline/img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastianBocquet/pygtc/HEAD/pygtc/tests/baseline/img.png -------------------------------------------------------------------------------- /pygtc/tests/baseline/labelRotation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastianBocquet/pygtc/HEAD/pygtc/tests/baseline/labelRotation.png -------------------------------------------------------------------------------- /pygtc/tests/baseline/mathTextFontSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastianBocquet/pygtc/HEAD/pygtc/tests/baseline/mathTextFontSet.png -------------------------------------------------------------------------------- /pygtc/tests/baseline/nBins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastianBocquet/pygtc/HEAD/pygtc/tests/baseline/nBins.png -------------------------------------------------------------------------------- /pygtc/tests/baseline/nContourLevels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastianBocquet/pygtc/HEAD/pygtc/tests/baseline/nContourLevels.png -------------------------------------------------------------------------------- /pygtc/tests/baseline/pandas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastianBocquet/pygtc/HEAD/pygtc/tests/baseline/pandas.png -------------------------------------------------------------------------------- /pygtc/tests/baseline/panelSpacing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastianBocquet/pygtc/HEAD/pygtc/tests/baseline/panelSpacing.png -------------------------------------------------------------------------------- /pygtc/tests/baseline/paramNames_noTex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastianBocquet/pygtc/HEAD/pygtc/tests/baseline/paramNames_noTex.png -------------------------------------------------------------------------------- /pygtc/tests/baseline/paramNames_withTex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastianBocquet/pygtc/HEAD/pygtc/tests/baseline/paramNames_withTex.png -------------------------------------------------------------------------------- /pygtc/tests/baseline/plotDensity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastianBocquet/pygtc/HEAD/pygtc/tests/baseline/plotDensity.png -------------------------------------------------------------------------------- /pygtc/tests/baseline/priors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastianBocquet/pygtc/HEAD/pygtc/tests/baseline/priors.png -------------------------------------------------------------------------------- /pygtc/tests/baseline/sigmaContourLevels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastianBocquet/pygtc/HEAD/pygtc/tests/baseline/sigmaContourLevels.png -------------------------------------------------------------------------------- /pygtc/tests/baseline/smoothingKernel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastianBocquet/pygtc/HEAD/pygtc/tests/baseline/smoothingKernel.png -------------------------------------------------------------------------------- /pygtc/tests/baseline/tickShifts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastianBocquet/pygtc/HEAD/pygtc/tests/baseline/tickShifts.png -------------------------------------------------------------------------------- /pygtc/tests/baseline/truthLabels_noTex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastianBocquet/pygtc/HEAD/pygtc/tests/baseline/truthLabels_noTex.png -------------------------------------------------------------------------------- /pygtc/tests/baseline/truthLabels_withTex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastianBocquet/pygtc/HEAD/pygtc/tests/baseline/truthLabels_withTex.png -------------------------------------------------------------------------------- /pygtc/tests/baseline/truthLineStyles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastianBocquet/pygtc/HEAD/pygtc/tests/baseline/truthLineStyles.png -------------------------------------------------------------------------------- /pygtc/tests/baseline/truthLineStyles_withLegend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastianBocquet/pygtc/HEAD/pygtc/tests/baseline/truthLineStyles_withLegend.png -------------------------------------------------------------------------------- /pygtc/tests/test_plotGTC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastianBocquet/pygtc/HEAD/pygtc/tests/test_plotGTC.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastianBocquet/pygtc/HEAD/requirements.txt -------------------------------------------------------------------------------- /rtd_environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastianBocquet/pygtc/HEAD/rtd_environment.yml -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastianBocquet/pygtc/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastianBocquet/pygtc/HEAD/setup.py -------------------------------------------------------------------------------- /test-environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastianBocquet/pygtc/HEAD/test-environment.yml --------------------------------------------------------------------------------