├── .gitignore ├── README.md ├── docker-compose.yml ├── down.sh ├── get_and_clean_data.py ├── notebooks ├── container_tweet.png ├── dask-dataframe.ipynb ├── data │ └── .gitkeep ├── docker-for-data-science.ipynb └── pstree.png └── up.sh /.gitignore: -------------------------------------------------------------------------------- 1 | .ipynb_checkpoints 2 | Food_Inspections.csv 3 | notebooks/data/food* 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jseabold/pydata-chi-docker/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jseabold/pydata-chi-docker/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /down.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jseabold/pydata-chi-docker/HEAD/down.sh -------------------------------------------------------------------------------- /get_and_clean_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jseabold/pydata-chi-docker/HEAD/get_and_clean_data.py -------------------------------------------------------------------------------- /notebooks/container_tweet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jseabold/pydata-chi-docker/HEAD/notebooks/container_tweet.png -------------------------------------------------------------------------------- /notebooks/dask-dataframe.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jseabold/pydata-chi-docker/HEAD/notebooks/dask-dataframe.ipynb -------------------------------------------------------------------------------- /notebooks/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /notebooks/docker-for-data-science.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jseabold/pydata-chi-docker/HEAD/notebooks/docker-for-data-science.ipynb -------------------------------------------------------------------------------- /notebooks/pstree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jseabold/pydata-chi-docker/HEAD/notebooks/pstree.png -------------------------------------------------------------------------------- /up.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jseabold/pydata-chi-docker/HEAD/up.sh --------------------------------------------------------------------------------