├── .gitignore ├── LICENSE ├── README.md ├── Using SA to Interrogate Models ├── .gitignore ├── DMDU_2019_Introduction_to_SALib.ipynb ├── Using Sensitivity Analysis.ipynb ├── model.py └── scatter.png ├── environment.yml ├── index.ipynb └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SALib/SATut/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SALib/SATut/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SALib/SATut/HEAD/README.md -------------------------------------------------------------------------------- /Using SA to Interrogate Models/.gitignore: -------------------------------------------------------------------------------- 1 | .ipynb_checkpoints/* -------------------------------------------------------------------------------- /Using SA to Interrogate Models/DMDU_2019_Introduction_to_SALib.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SALib/SATut/HEAD/Using SA to Interrogate Models/DMDU_2019_Introduction_to_SALib.ipynb -------------------------------------------------------------------------------- /Using SA to Interrogate Models/Using Sensitivity Analysis.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SALib/SATut/HEAD/Using SA to Interrogate Models/Using Sensitivity Analysis.ipynb -------------------------------------------------------------------------------- /Using SA to Interrogate Models/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SALib/SATut/HEAD/Using SA to Interrogate Models/model.py -------------------------------------------------------------------------------- /Using SA to Interrogate Models/scatter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SALib/SATut/HEAD/Using SA to Interrogate Models/scatter.png -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SALib/SATut/HEAD/environment.yml -------------------------------------------------------------------------------- /index.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SALib/SATut/HEAD/index.ipynb -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | SALib 2 | matplotlib 3 | seaborn 4 | numpy 5 | ipywidgets --------------------------------------------------------------------------------