├── .gitignore ├── EDA-cheat-sheet.md ├── LICENSE ├── README.md ├── data ├── aquastat │ ├── aquastat.csv.gzip │ └── world.json └── redcard │ └── redcard.csv.gz ├── notebooks ├── 0-Intro │ ├── 0-Introduction-to-Exploratory-Data-Analysis.ipynb │ ├── 0-Introduction-to-Jupyter-Notebooks.ipynb │ ├── figures │ │ ├── branches.jpg │ │ └── crisp.png │ └── html-versions │ │ ├── 0-Introduction-to-Exploratory-Data-Analysis.html │ │ └── 0-Introduction-to-Jupyter-Notebooks.html ├── 1-RedCard-EDA │ ├── 1-Redcard-Dataset.ipynb │ ├── 2-Redcard-Players.ipynb │ ├── 3-Redcard-Dyads.ipynb │ ├── 4-Redcard-final-joins.ipynb │ ├── figures │ │ ├── covariates.png │ │ ├── models.png │ │ └── results.png │ └── html-versions │ │ ├── 1-Redcard-Dataset.html │ │ ├── 2-Redcard-Players.html │ │ ├── 3-Redcard-Dyads.html │ │ └── 4-Redcard-final-joins.html └── 2-Aquastat-EDA │ ├── 1-Aquastat-Introduction.ipynb │ ├── 2-Aquastat-Missing-Data.ipynb │ ├── 3-Aquastat-Univariate.ipynb │ ├── 4-Aquastat-TargetxVariable.ipynb │ ├── 5-Aquastat-Multivariate.ipynb │ ├── figures │ ├── branches.jpg │ └── fao.jpg │ └── html-versions │ ├── 1-Aquastat-Introduction.html │ ├── 2-Aquastat-Missing-Data.html │ ├── 3-Aquastat-Univariate.html │ ├── 4-Aquastat-TargetxVariable.html │ ├── 5-Aquastat-Multivariate.html │ └── pivottablejs.html ├── scripts └── aqua_helper.py └── setup ├── environment.yml ├── pivottablejs.html ├── requirements.txt ├── test-my-environment.html └── test-my-environment.ipynb /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | .ipynb_checkpoints/ 3 | -------------------------------------------------------------------------------- /EDA-cheat-sheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmawer/pycon-2017-eda-tutorial/HEAD/EDA-cheat-sheet.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmawer/pycon-2017-eda-tutorial/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmawer/pycon-2017-eda-tutorial/HEAD/README.md -------------------------------------------------------------------------------- /data/aquastat/aquastat.csv.gzip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmawer/pycon-2017-eda-tutorial/HEAD/data/aquastat/aquastat.csv.gzip -------------------------------------------------------------------------------- /data/aquastat/world.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmawer/pycon-2017-eda-tutorial/HEAD/data/aquastat/world.json -------------------------------------------------------------------------------- /data/redcard/redcard.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmawer/pycon-2017-eda-tutorial/HEAD/data/redcard/redcard.csv.gz -------------------------------------------------------------------------------- /notebooks/0-Intro/0-Introduction-to-Exploratory-Data-Analysis.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmawer/pycon-2017-eda-tutorial/HEAD/notebooks/0-Intro/0-Introduction-to-Exploratory-Data-Analysis.ipynb -------------------------------------------------------------------------------- /notebooks/0-Intro/0-Introduction-to-Jupyter-Notebooks.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmawer/pycon-2017-eda-tutorial/HEAD/notebooks/0-Intro/0-Introduction-to-Jupyter-Notebooks.ipynb -------------------------------------------------------------------------------- /notebooks/0-Intro/figures/branches.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmawer/pycon-2017-eda-tutorial/HEAD/notebooks/0-Intro/figures/branches.jpg -------------------------------------------------------------------------------- /notebooks/0-Intro/figures/crisp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmawer/pycon-2017-eda-tutorial/HEAD/notebooks/0-Intro/figures/crisp.png -------------------------------------------------------------------------------- /notebooks/0-Intro/html-versions/0-Introduction-to-Exploratory-Data-Analysis.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmawer/pycon-2017-eda-tutorial/HEAD/notebooks/0-Intro/html-versions/0-Introduction-to-Exploratory-Data-Analysis.html -------------------------------------------------------------------------------- /notebooks/0-Intro/html-versions/0-Introduction-to-Jupyter-Notebooks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmawer/pycon-2017-eda-tutorial/HEAD/notebooks/0-Intro/html-versions/0-Introduction-to-Jupyter-Notebooks.html -------------------------------------------------------------------------------- /notebooks/1-RedCard-EDA/1-Redcard-Dataset.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmawer/pycon-2017-eda-tutorial/HEAD/notebooks/1-RedCard-EDA/1-Redcard-Dataset.ipynb -------------------------------------------------------------------------------- /notebooks/1-RedCard-EDA/2-Redcard-Players.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmawer/pycon-2017-eda-tutorial/HEAD/notebooks/1-RedCard-EDA/2-Redcard-Players.ipynb -------------------------------------------------------------------------------- /notebooks/1-RedCard-EDA/3-Redcard-Dyads.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmawer/pycon-2017-eda-tutorial/HEAD/notebooks/1-RedCard-EDA/3-Redcard-Dyads.ipynb -------------------------------------------------------------------------------- /notebooks/1-RedCard-EDA/4-Redcard-final-joins.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmawer/pycon-2017-eda-tutorial/HEAD/notebooks/1-RedCard-EDA/4-Redcard-final-joins.ipynb -------------------------------------------------------------------------------- /notebooks/1-RedCard-EDA/figures/covariates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmawer/pycon-2017-eda-tutorial/HEAD/notebooks/1-RedCard-EDA/figures/covariates.png -------------------------------------------------------------------------------- /notebooks/1-RedCard-EDA/figures/models.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmawer/pycon-2017-eda-tutorial/HEAD/notebooks/1-RedCard-EDA/figures/models.png -------------------------------------------------------------------------------- /notebooks/1-RedCard-EDA/figures/results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmawer/pycon-2017-eda-tutorial/HEAD/notebooks/1-RedCard-EDA/figures/results.png -------------------------------------------------------------------------------- /notebooks/1-RedCard-EDA/html-versions/1-Redcard-Dataset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmawer/pycon-2017-eda-tutorial/HEAD/notebooks/1-RedCard-EDA/html-versions/1-Redcard-Dataset.html -------------------------------------------------------------------------------- /notebooks/1-RedCard-EDA/html-versions/2-Redcard-Players.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmawer/pycon-2017-eda-tutorial/HEAD/notebooks/1-RedCard-EDA/html-versions/2-Redcard-Players.html -------------------------------------------------------------------------------- /notebooks/1-RedCard-EDA/html-versions/3-Redcard-Dyads.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmawer/pycon-2017-eda-tutorial/HEAD/notebooks/1-RedCard-EDA/html-versions/3-Redcard-Dyads.html -------------------------------------------------------------------------------- /notebooks/1-RedCard-EDA/html-versions/4-Redcard-final-joins.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmawer/pycon-2017-eda-tutorial/HEAD/notebooks/1-RedCard-EDA/html-versions/4-Redcard-final-joins.html -------------------------------------------------------------------------------- /notebooks/2-Aquastat-EDA/1-Aquastat-Introduction.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmawer/pycon-2017-eda-tutorial/HEAD/notebooks/2-Aquastat-EDA/1-Aquastat-Introduction.ipynb -------------------------------------------------------------------------------- /notebooks/2-Aquastat-EDA/2-Aquastat-Missing-Data.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmawer/pycon-2017-eda-tutorial/HEAD/notebooks/2-Aquastat-EDA/2-Aquastat-Missing-Data.ipynb -------------------------------------------------------------------------------- /notebooks/2-Aquastat-EDA/3-Aquastat-Univariate.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmawer/pycon-2017-eda-tutorial/HEAD/notebooks/2-Aquastat-EDA/3-Aquastat-Univariate.ipynb -------------------------------------------------------------------------------- /notebooks/2-Aquastat-EDA/4-Aquastat-TargetxVariable.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmawer/pycon-2017-eda-tutorial/HEAD/notebooks/2-Aquastat-EDA/4-Aquastat-TargetxVariable.ipynb -------------------------------------------------------------------------------- /notebooks/2-Aquastat-EDA/5-Aquastat-Multivariate.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmawer/pycon-2017-eda-tutorial/HEAD/notebooks/2-Aquastat-EDA/5-Aquastat-Multivariate.ipynb -------------------------------------------------------------------------------- /notebooks/2-Aquastat-EDA/figures/branches.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmawer/pycon-2017-eda-tutorial/HEAD/notebooks/2-Aquastat-EDA/figures/branches.jpg -------------------------------------------------------------------------------- /notebooks/2-Aquastat-EDA/figures/fao.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmawer/pycon-2017-eda-tutorial/HEAD/notebooks/2-Aquastat-EDA/figures/fao.jpg -------------------------------------------------------------------------------- /notebooks/2-Aquastat-EDA/html-versions/1-Aquastat-Introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmawer/pycon-2017-eda-tutorial/HEAD/notebooks/2-Aquastat-EDA/html-versions/1-Aquastat-Introduction.html -------------------------------------------------------------------------------- /notebooks/2-Aquastat-EDA/html-versions/2-Aquastat-Missing-Data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmawer/pycon-2017-eda-tutorial/HEAD/notebooks/2-Aquastat-EDA/html-versions/2-Aquastat-Missing-Data.html -------------------------------------------------------------------------------- /notebooks/2-Aquastat-EDA/html-versions/3-Aquastat-Univariate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmawer/pycon-2017-eda-tutorial/HEAD/notebooks/2-Aquastat-EDA/html-versions/3-Aquastat-Univariate.html -------------------------------------------------------------------------------- /notebooks/2-Aquastat-EDA/html-versions/4-Aquastat-TargetxVariable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmawer/pycon-2017-eda-tutorial/HEAD/notebooks/2-Aquastat-EDA/html-versions/4-Aquastat-TargetxVariable.html -------------------------------------------------------------------------------- /notebooks/2-Aquastat-EDA/html-versions/5-Aquastat-Multivariate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmawer/pycon-2017-eda-tutorial/HEAD/notebooks/2-Aquastat-EDA/html-versions/5-Aquastat-Multivariate.html -------------------------------------------------------------------------------- /notebooks/2-Aquastat-EDA/html-versions/pivottablejs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmawer/pycon-2017-eda-tutorial/HEAD/notebooks/2-Aquastat-EDA/html-versions/pivottablejs.html -------------------------------------------------------------------------------- /scripts/aqua_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmawer/pycon-2017-eda-tutorial/HEAD/scripts/aqua_helper.py -------------------------------------------------------------------------------- /setup/environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmawer/pycon-2017-eda-tutorial/HEAD/setup/environment.yml -------------------------------------------------------------------------------- /setup/pivottablejs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmawer/pycon-2017-eda-tutorial/HEAD/setup/pivottablejs.html -------------------------------------------------------------------------------- /setup/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmawer/pycon-2017-eda-tutorial/HEAD/setup/requirements.txt -------------------------------------------------------------------------------- /setup/test-my-environment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmawer/pycon-2017-eda-tutorial/HEAD/setup/test-my-environment.html -------------------------------------------------------------------------------- /setup/test-my-environment.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmawer/pycon-2017-eda-tutorial/HEAD/setup/test-my-environment.ipynb --------------------------------------------------------------------------------