├── .coveragerc ├── .gitattributes ├── .github └── workflows │ ├── ci.yml │ └── draft-pdf.yml ├── .gitignore ├── .readthedocs.yaml ├── LICENSE ├── MANIFEST.in ├── README.md ├── data ├── darfur.csv └── references.txt ├── environment.yml ├── images ├── output_22_0.png ├── output_6_0.png └── output_7_0.png ├── paper ├── output_4_0.png ├── output_5_0.png ├── output_6_0.png ├── paper.bib └── paper.md ├── requirements.txt ├── requirements_docs.txt ├── requirements_test.txt ├── sensemakr ├── __init__.py ├── _version.py ├── bias_functions.py ├── data.py ├── data │ ├── darfur.csv │ └── references.txt ├── docs │ ├── Makefile │ ├── _static │ │ └── custom.css │ ├── conf.py │ ├── index.rst │ ├── make.bat │ ├── modules │ │ ├── bias_functions.rst │ │ ├── data.rst │ │ ├── index.rst │ │ ├── main.rst │ │ ├── sensitivity_bounds.rst │ │ ├── sensitivity_plots.rst │ │ └── sensitivity_stats.rst │ └── notebooks │ │ ├── quickstart.ipynb │ │ └── the_risks_of_informal_benchmarking.ipynb ├── main.py ├── sensitivity_bounds.py ├── sensitivity_plots.py └── sensitivity_statistics.py ├── setup.cfg ├── setup.py ├── test_dev.py ├── tests ├── test_bias_functions.py ├── test_darfur.py ├── test_ovb_bounds.py ├── test_ovb_plots.py └── test_sensitivity_stats.py └── versioneer.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlapier2/PySensemakr/HEAD/.coveragerc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | sensemakr/_version.py export-subst 2 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlapier2/PySensemakr/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/draft-pdf.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlapier2/PySensemakr/HEAD/.github/workflows/draft-pdf.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | __pycache__/ 3 | .ipynb_checkpoints 4 | backup/ 5 | -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlapier2/PySensemakr/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlapier2/PySensemakr/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlapier2/PySensemakr/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlapier2/PySensemakr/HEAD/README.md -------------------------------------------------------------------------------- /data/darfur.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlapier2/PySensemakr/HEAD/data/darfur.csv -------------------------------------------------------------------------------- /data/references.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlapier2/PySensemakr/HEAD/data/references.txt -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlapier2/PySensemakr/HEAD/environment.yml -------------------------------------------------------------------------------- /images/output_22_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlapier2/PySensemakr/HEAD/images/output_22_0.png -------------------------------------------------------------------------------- /images/output_6_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlapier2/PySensemakr/HEAD/images/output_6_0.png -------------------------------------------------------------------------------- /images/output_7_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlapier2/PySensemakr/HEAD/images/output_7_0.png -------------------------------------------------------------------------------- /paper/output_4_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlapier2/PySensemakr/HEAD/paper/output_4_0.png -------------------------------------------------------------------------------- /paper/output_5_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlapier2/PySensemakr/HEAD/paper/output_5_0.png -------------------------------------------------------------------------------- /paper/output_6_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlapier2/PySensemakr/HEAD/paper/output_6_0.png -------------------------------------------------------------------------------- /paper/paper.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlapier2/PySensemakr/HEAD/paper/paper.bib -------------------------------------------------------------------------------- /paper/paper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlapier2/PySensemakr/HEAD/paper/paper.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlapier2/PySensemakr/HEAD/requirements.txt -------------------------------------------------------------------------------- /requirements_docs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlapier2/PySensemakr/HEAD/requirements_docs.txt -------------------------------------------------------------------------------- /requirements_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlapier2/PySensemakr/HEAD/requirements_test.txt -------------------------------------------------------------------------------- /sensemakr/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlapier2/PySensemakr/HEAD/sensemakr/__init__.py -------------------------------------------------------------------------------- /sensemakr/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlapier2/PySensemakr/HEAD/sensemakr/_version.py -------------------------------------------------------------------------------- /sensemakr/bias_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlapier2/PySensemakr/HEAD/sensemakr/bias_functions.py -------------------------------------------------------------------------------- /sensemakr/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlapier2/PySensemakr/HEAD/sensemakr/data.py -------------------------------------------------------------------------------- /sensemakr/data/darfur.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlapier2/PySensemakr/HEAD/sensemakr/data/darfur.csv -------------------------------------------------------------------------------- /sensemakr/data/references.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlapier2/PySensemakr/HEAD/sensemakr/data/references.txt -------------------------------------------------------------------------------- /sensemakr/docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlapier2/PySensemakr/HEAD/sensemakr/docs/Makefile -------------------------------------------------------------------------------- /sensemakr/docs/_static/custom.css: -------------------------------------------------------------------------------- 1 | :root { 2 | --pst-font-size-base: 15px; 3 | } 4 | -------------------------------------------------------------------------------- /sensemakr/docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlapier2/PySensemakr/HEAD/sensemakr/docs/conf.py -------------------------------------------------------------------------------- /sensemakr/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlapier2/PySensemakr/HEAD/sensemakr/docs/index.rst -------------------------------------------------------------------------------- /sensemakr/docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlapier2/PySensemakr/HEAD/sensemakr/docs/make.bat -------------------------------------------------------------------------------- /sensemakr/docs/modules/bias_functions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlapier2/PySensemakr/HEAD/sensemakr/docs/modules/bias_functions.rst -------------------------------------------------------------------------------- /sensemakr/docs/modules/data.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlapier2/PySensemakr/HEAD/sensemakr/docs/modules/data.rst -------------------------------------------------------------------------------- /sensemakr/docs/modules/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlapier2/PySensemakr/HEAD/sensemakr/docs/modules/index.rst -------------------------------------------------------------------------------- /sensemakr/docs/modules/main.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlapier2/PySensemakr/HEAD/sensemakr/docs/modules/main.rst -------------------------------------------------------------------------------- /sensemakr/docs/modules/sensitivity_bounds.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlapier2/PySensemakr/HEAD/sensemakr/docs/modules/sensitivity_bounds.rst -------------------------------------------------------------------------------- /sensemakr/docs/modules/sensitivity_plots.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlapier2/PySensemakr/HEAD/sensemakr/docs/modules/sensitivity_plots.rst -------------------------------------------------------------------------------- /sensemakr/docs/modules/sensitivity_stats.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlapier2/PySensemakr/HEAD/sensemakr/docs/modules/sensitivity_stats.rst -------------------------------------------------------------------------------- /sensemakr/docs/notebooks/quickstart.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlapier2/PySensemakr/HEAD/sensemakr/docs/notebooks/quickstart.ipynb -------------------------------------------------------------------------------- /sensemakr/docs/notebooks/the_risks_of_informal_benchmarking.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlapier2/PySensemakr/HEAD/sensemakr/docs/notebooks/the_risks_of_informal_benchmarking.ipynb -------------------------------------------------------------------------------- /sensemakr/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlapier2/PySensemakr/HEAD/sensemakr/main.py -------------------------------------------------------------------------------- /sensemakr/sensitivity_bounds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlapier2/PySensemakr/HEAD/sensemakr/sensitivity_bounds.py -------------------------------------------------------------------------------- /sensemakr/sensitivity_plots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlapier2/PySensemakr/HEAD/sensemakr/sensitivity_plots.py -------------------------------------------------------------------------------- /sensemakr/sensitivity_statistics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlapier2/PySensemakr/HEAD/sensemakr/sensitivity_statistics.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlapier2/PySensemakr/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlapier2/PySensemakr/HEAD/setup.py -------------------------------------------------------------------------------- /test_dev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlapier2/PySensemakr/HEAD/test_dev.py -------------------------------------------------------------------------------- /tests/test_bias_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlapier2/PySensemakr/HEAD/tests/test_bias_functions.py -------------------------------------------------------------------------------- /tests/test_darfur.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlapier2/PySensemakr/HEAD/tests/test_darfur.py -------------------------------------------------------------------------------- /tests/test_ovb_bounds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlapier2/PySensemakr/HEAD/tests/test_ovb_bounds.py -------------------------------------------------------------------------------- /tests/test_ovb_plots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlapier2/PySensemakr/HEAD/tests/test_ovb_plots.py -------------------------------------------------------------------------------- /tests/test_sensitivity_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlapier2/PySensemakr/HEAD/tests/test_sensitivity_stats.py -------------------------------------------------------------------------------- /versioneer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlapier2/PySensemakr/HEAD/versioneer.py --------------------------------------------------------------------------------