├── .DS_Store ├── .gitignore ├── LICENSE ├── README.md ├── apt.txt ├── data ├── .DS_Store ├── education.csv ├── mushrooms.csv ├── temperature_locs.csv ├── temperatures.csv └── temperatures │ ├── Bangkok.txt │ ├── Bombay.txt │ ├── Cairo.txt │ ├── Cape_Town.txt │ ├── Chicago.txt │ ├── Istanbul.txt │ ├── London.txt │ ├── Los_Angeles.txt │ ├── Mexico.txt │ ├── Montreal.txt │ ├── Moscow.txt │ ├── New_York.txt │ ├── Rome.txt │ ├── Santiago.txt │ ├── Sao_Paulo.txt │ ├── Seoul.txt │ ├── Shanghai.txt │ ├── Somalia.txt │ ├── Sydney.txt │ └── Tokyo.txt ├── education.ipynb ├── hypercube.ipynb ├── mushrooms.ipynb ├── requirements.txt ├── runtime.txt └── temperatures.ipynb /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/hypertools-paper-notebooks/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/hypertools-paper-notebooks/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/hypertools-paper-notebooks/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/hypertools-paper-notebooks/HEAD/README.md -------------------------------------------------------------------------------- /apt.txt: -------------------------------------------------------------------------------- 1 | python3-tk 2 | -------------------------------------------------------------------------------- /data/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/hypertools-paper-notebooks/HEAD/data/.DS_Store -------------------------------------------------------------------------------- /data/education.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/hypertools-paper-notebooks/HEAD/data/education.csv -------------------------------------------------------------------------------- /data/mushrooms.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/hypertools-paper-notebooks/HEAD/data/mushrooms.csv -------------------------------------------------------------------------------- /data/temperature_locs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/hypertools-paper-notebooks/HEAD/data/temperature_locs.csv -------------------------------------------------------------------------------- /data/temperatures.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/hypertools-paper-notebooks/HEAD/data/temperatures.csv -------------------------------------------------------------------------------- /data/temperatures/Bangkok.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/hypertools-paper-notebooks/HEAD/data/temperatures/Bangkok.txt -------------------------------------------------------------------------------- /data/temperatures/Bombay.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/hypertools-paper-notebooks/HEAD/data/temperatures/Bombay.txt -------------------------------------------------------------------------------- /data/temperatures/Cairo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/hypertools-paper-notebooks/HEAD/data/temperatures/Cairo.txt -------------------------------------------------------------------------------- /data/temperatures/Cape_Town.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/hypertools-paper-notebooks/HEAD/data/temperatures/Cape_Town.txt -------------------------------------------------------------------------------- /data/temperatures/Chicago.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/hypertools-paper-notebooks/HEAD/data/temperatures/Chicago.txt -------------------------------------------------------------------------------- /data/temperatures/Istanbul.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/hypertools-paper-notebooks/HEAD/data/temperatures/Istanbul.txt -------------------------------------------------------------------------------- /data/temperatures/London.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/hypertools-paper-notebooks/HEAD/data/temperatures/London.txt -------------------------------------------------------------------------------- /data/temperatures/Los_Angeles.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/hypertools-paper-notebooks/HEAD/data/temperatures/Los_Angeles.txt -------------------------------------------------------------------------------- /data/temperatures/Mexico.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/hypertools-paper-notebooks/HEAD/data/temperatures/Mexico.txt -------------------------------------------------------------------------------- /data/temperatures/Montreal.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/hypertools-paper-notebooks/HEAD/data/temperatures/Montreal.txt -------------------------------------------------------------------------------- /data/temperatures/Moscow.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/hypertools-paper-notebooks/HEAD/data/temperatures/Moscow.txt -------------------------------------------------------------------------------- /data/temperatures/New_York.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/hypertools-paper-notebooks/HEAD/data/temperatures/New_York.txt -------------------------------------------------------------------------------- /data/temperatures/Rome.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/hypertools-paper-notebooks/HEAD/data/temperatures/Rome.txt -------------------------------------------------------------------------------- /data/temperatures/Santiago.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/hypertools-paper-notebooks/HEAD/data/temperatures/Santiago.txt -------------------------------------------------------------------------------- /data/temperatures/Sao_Paulo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/hypertools-paper-notebooks/HEAD/data/temperatures/Sao_Paulo.txt -------------------------------------------------------------------------------- /data/temperatures/Seoul.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/hypertools-paper-notebooks/HEAD/data/temperatures/Seoul.txt -------------------------------------------------------------------------------- /data/temperatures/Shanghai.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/hypertools-paper-notebooks/HEAD/data/temperatures/Shanghai.txt -------------------------------------------------------------------------------- /data/temperatures/Somalia.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/hypertools-paper-notebooks/HEAD/data/temperatures/Somalia.txt -------------------------------------------------------------------------------- /data/temperatures/Sydney.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/hypertools-paper-notebooks/HEAD/data/temperatures/Sydney.txt -------------------------------------------------------------------------------- /data/temperatures/Tokyo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/hypertools-paper-notebooks/HEAD/data/temperatures/Tokyo.txt -------------------------------------------------------------------------------- /education.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/hypertools-paper-notebooks/HEAD/education.ipynb -------------------------------------------------------------------------------- /hypercube.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/hypertools-paper-notebooks/HEAD/hypercube.ipynb -------------------------------------------------------------------------------- /mushrooms.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/hypertools-paper-notebooks/HEAD/mushrooms.ipynb -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/hypertools-paper-notebooks/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-2.7 2 | -------------------------------------------------------------------------------- /temperatures.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/hypertools-paper-notebooks/HEAD/temperatures.ipynb --------------------------------------------------------------------------------