├── .gitignore ├── 0 - Introduction.ipynb ├── 1 - Reading Data.ipynb ├── 2 - Data Wrangling with Pandas.ipynb ├── 3 - Exploratory Analysis with Pandas.ipynb ├── 4 - Exploratory Plotting.ipynb ├── 5 - Modeling with scikit-learn.ipynb ├── README.md ├── data ├── data.zip ├── get_data.py └── zip_data.sh ├── environment.yaml ├── img ├── download-anaconda.png ├── download-py36.png └── download-zip.png ├── imports-test.py ├── introduction.pdf ├── introduction.pptx ├── load_data.py ├── python-tutorial.ipynb └── solutions ├── clustering_comments.py ├── complete_chain.py ├── frequent_word.py ├── get_group.py ├── join_violations.py ├── month_visits.py ├── numpy_reshape.py ├── object_hook_json.py ├── pandas_read_csv.py ├── pipe_results.py ├── plot_clusters.py ├── query.py ├── random_poisson.py ├── read_json.py ├── read_json_twice.py ├── read_url_json.py ├── sklearn_pipeline.py ├── top_words_loadings.py ├── violation_by_quarter.py └── violation_distribution.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jseabold/pycon-ds-2018/HEAD/.gitignore -------------------------------------------------------------------------------- /0 - Introduction.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jseabold/pycon-ds-2018/HEAD/0 - Introduction.ipynb -------------------------------------------------------------------------------- /1 - Reading Data.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jseabold/pycon-ds-2018/HEAD/1 - Reading Data.ipynb -------------------------------------------------------------------------------- /2 - Data Wrangling with Pandas.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jseabold/pycon-ds-2018/HEAD/2 - Data Wrangling with Pandas.ipynb -------------------------------------------------------------------------------- /3 - Exploratory Analysis with Pandas.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jseabold/pycon-ds-2018/HEAD/3 - Exploratory Analysis with Pandas.ipynb -------------------------------------------------------------------------------- /4 - Exploratory Plotting.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jseabold/pycon-ds-2018/HEAD/4 - Exploratory Plotting.ipynb -------------------------------------------------------------------------------- /5 - Modeling with scikit-learn.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jseabold/pycon-ds-2018/HEAD/5 - Modeling with scikit-learn.ipynb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jseabold/pycon-ds-2018/HEAD/README.md -------------------------------------------------------------------------------- /data/data.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jseabold/pycon-ds-2018/HEAD/data/data.zip -------------------------------------------------------------------------------- /data/get_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jseabold/pycon-ds-2018/HEAD/data/get_data.py -------------------------------------------------------------------------------- /data/zip_data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jseabold/pycon-ds-2018/HEAD/data/zip_data.sh -------------------------------------------------------------------------------- /environment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jseabold/pycon-ds-2018/HEAD/environment.yaml -------------------------------------------------------------------------------- /img/download-anaconda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jseabold/pycon-ds-2018/HEAD/img/download-anaconda.png -------------------------------------------------------------------------------- /img/download-py36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jseabold/pycon-ds-2018/HEAD/img/download-py36.png -------------------------------------------------------------------------------- /img/download-zip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jseabold/pycon-ds-2018/HEAD/img/download-zip.png -------------------------------------------------------------------------------- /imports-test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jseabold/pycon-ds-2018/HEAD/imports-test.py -------------------------------------------------------------------------------- /introduction.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jseabold/pycon-ds-2018/HEAD/introduction.pdf -------------------------------------------------------------------------------- /introduction.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jseabold/pycon-ds-2018/HEAD/introduction.pptx -------------------------------------------------------------------------------- /load_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jseabold/pycon-ds-2018/HEAD/load_data.py -------------------------------------------------------------------------------- /python-tutorial.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jseabold/pycon-ds-2018/HEAD/python-tutorial.ipynb -------------------------------------------------------------------------------- /solutions/clustering_comments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jseabold/pycon-ds-2018/HEAD/solutions/clustering_comments.py -------------------------------------------------------------------------------- /solutions/complete_chain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jseabold/pycon-ds-2018/HEAD/solutions/complete_chain.py -------------------------------------------------------------------------------- /solutions/frequent_word.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jseabold/pycon-ds-2018/HEAD/solutions/frequent_word.py -------------------------------------------------------------------------------- /solutions/get_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jseabold/pycon-ds-2018/HEAD/solutions/get_group.py -------------------------------------------------------------------------------- /solutions/join_violations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jseabold/pycon-ds-2018/HEAD/solutions/join_violations.py -------------------------------------------------------------------------------- /solutions/month_visits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jseabold/pycon-ds-2018/HEAD/solutions/month_visits.py -------------------------------------------------------------------------------- /solutions/numpy_reshape.py: -------------------------------------------------------------------------------- 1 | import numpy as np 2 | 3 | 4 | np.arange(1000).reshape(-1, 10) 5 | -------------------------------------------------------------------------------- /solutions/object_hook_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jseabold/pycon-ds-2018/HEAD/solutions/object_hook_json.py -------------------------------------------------------------------------------- /solutions/pandas_read_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jseabold/pycon-ds-2018/HEAD/solutions/pandas_read_csv.py -------------------------------------------------------------------------------- /solutions/pipe_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jseabold/pycon-ds-2018/HEAD/solutions/pipe_results.py -------------------------------------------------------------------------------- /solutions/plot_clusters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jseabold/pycon-ds-2018/HEAD/solutions/plot_clusters.py -------------------------------------------------------------------------------- /solutions/query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jseabold/pycon-ds-2018/HEAD/solutions/query.py -------------------------------------------------------------------------------- /solutions/random_poisson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jseabold/pycon-ds-2018/HEAD/solutions/random_poisson.py -------------------------------------------------------------------------------- /solutions/read_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jseabold/pycon-ds-2018/HEAD/solutions/read_json.py -------------------------------------------------------------------------------- /solutions/read_json_twice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jseabold/pycon-ds-2018/HEAD/solutions/read_json_twice.py -------------------------------------------------------------------------------- /solutions/read_url_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jseabold/pycon-ds-2018/HEAD/solutions/read_url_json.py -------------------------------------------------------------------------------- /solutions/sklearn_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jseabold/pycon-ds-2018/HEAD/solutions/sklearn_pipeline.py -------------------------------------------------------------------------------- /solutions/top_words_loadings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jseabold/pycon-ds-2018/HEAD/solutions/top_words_loadings.py -------------------------------------------------------------------------------- /solutions/violation_by_quarter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jseabold/pycon-ds-2018/HEAD/solutions/violation_by_quarter.py -------------------------------------------------------------------------------- /solutions/violation_distribution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jseabold/pycon-ds-2018/HEAD/solutions/violation_distribution.py --------------------------------------------------------------------------------