├── .gitignore ├── LICENSE ├── README.md ├── data └── coal_prod_cleaned.csv ├── deliver ├── .ipynb_checkpoints │ └── Coal-mine-productivity-checkpoint.ipynb ├── Coal-mine-productivity.html ├── Coal-mine-productivity.ipynb ├── Coal-mine-productivity.py ├── OSCON Slides.html ├── OSCON Slides.ipynb ├── OSCON Slides.py ├── coal_data_cleanup.html ├── coal_data_cleanup.ipynb ├── coal_data_cleanup.py └── custom.css ├── develop ├── 2015-06-28-jw-initial-data-clean.html ├── 2015-06-28-jw-initial-data-clean.ipynb ├── 2015-06-28-jw-initial-data-clean.py ├── 2015-07-02-jw-plotting-relationships.html ├── 2015-07-02-jw-plotting-relationships.ipynb ├── 2015-07-02-jw-plotting-relationships.py ├── 2015-07-13-jw-plotting-relationships.html ├── 2015-07-13-jw-plotting-relationships.ipynb ├── 2015-07-13-jw-plotting-relationships.py ├── 2015-07-16-jw-example-notebook-setup.html ├── 2015-07-16-jw-example-notebook-setup.ipynb ├── 2015-07-16-jw-example-notebook-setup.py ├── 2015-07-24-jw-coal-productivity.html ├── 2015-07-24-jw-coal-productivity.ipynb ├── 2015-07-24-jw-coal-productivity.py ├── Simple%20Demo.html ├── Simple%20Demo.ipynb └── Simple%20Demo.py ├── figures ├── 2015-07-16-jw-production-vs-hours-worked.png ├── 2015-07-24-jw-production-vs-hours-worked.png ├── 2097753744_184f05d463_z.jpg ├── 3013680713_cfcebbd403_z.jpg ├── attribute.txt ├── bird-leaf.jpg ├── confused-brad.gif ├── production-vs-hours-worked.png ├── production-vs-number-employees.png └── tom-ex.html └── src ├── __init__.py └── simpleexample.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbwhit/OSCON-2015/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbwhit/OSCON-2015/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbwhit/OSCON-2015/HEAD/README.md -------------------------------------------------------------------------------- /data/coal_prod_cleaned.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbwhit/OSCON-2015/HEAD/data/coal_prod_cleaned.csv -------------------------------------------------------------------------------- /deliver/.ipynb_checkpoints/Coal-mine-productivity-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbwhit/OSCON-2015/HEAD/deliver/.ipynb_checkpoints/Coal-mine-productivity-checkpoint.ipynb -------------------------------------------------------------------------------- /deliver/Coal-mine-productivity.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbwhit/OSCON-2015/HEAD/deliver/Coal-mine-productivity.html -------------------------------------------------------------------------------- /deliver/Coal-mine-productivity.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbwhit/OSCON-2015/HEAD/deliver/Coal-mine-productivity.ipynb -------------------------------------------------------------------------------- /deliver/Coal-mine-productivity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbwhit/OSCON-2015/HEAD/deliver/Coal-mine-productivity.py -------------------------------------------------------------------------------- /deliver/OSCON Slides.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbwhit/OSCON-2015/HEAD/deliver/OSCON Slides.html -------------------------------------------------------------------------------- /deliver/OSCON Slides.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbwhit/OSCON-2015/HEAD/deliver/OSCON Slides.ipynb -------------------------------------------------------------------------------- /deliver/OSCON Slides.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbwhit/OSCON-2015/HEAD/deliver/OSCON Slides.py -------------------------------------------------------------------------------- /deliver/coal_data_cleanup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbwhit/OSCON-2015/HEAD/deliver/coal_data_cleanup.html -------------------------------------------------------------------------------- /deliver/coal_data_cleanup.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbwhit/OSCON-2015/HEAD/deliver/coal_data_cleanup.ipynb -------------------------------------------------------------------------------- /deliver/coal_data_cleanup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbwhit/OSCON-2015/HEAD/deliver/coal_data_cleanup.py -------------------------------------------------------------------------------- /deliver/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbwhit/OSCON-2015/HEAD/deliver/custom.css -------------------------------------------------------------------------------- /develop/2015-06-28-jw-initial-data-clean.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbwhit/OSCON-2015/HEAD/develop/2015-06-28-jw-initial-data-clean.html -------------------------------------------------------------------------------- /develop/2015-06-28-jw-initial-data-clean.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbwhit/OSCON-2015/HEAD/develop/2015-06-28-jw-initial-data-clean.ipynb -------------------------------------------------------------------------------- /develop/2015-06-28-jw-initial-data-clean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbwhit/OSCON-2015/HEAD/develop/2015-06-28-jw-initial-data-clean.py -------------------------------------------------------------------------------- /develop/2015-07-02-jw-plotting-relationships.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbwhit/OSCON-2015/HEAD/develop/2015-07-02-jw-plotting-relationships.html -------------------------------------------------------------------------------- /develop/2015-07-02-jw-plotting-relationships.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbwhit/OSCON-2015/HEAD/develop/2015-07-02-jw-plotting-relationships.ipynb -------------------------------------------------------------------------------- /develop/2015-07-02-jw-plotting-relationships.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbwhit/OSCON-2015/HEAD/develop/2015-07-02-jw-plotting-relationships.py -------------------------------------------------------------------------------- /develop/2015-07-13-jw-plotting-relationships.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbwhit/OSCON-2015/HEAD/develop/2015-07-13-jw-plotting-relationships.html -------------------------------------------------------------------------------- /develop/2015-07-13-jw-plotting-relationships.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbwhit/OSCON-2015/HEAD/develop/2015-07-13-jw-plotting-relationships.ipynb -------------------------------------------------------------------------------- /develop/2015-07-13-jw-plotting-relationships.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbwhit/OSCON-2015/HEAD/develop/2015-07-13-jw-plotting-relationships.py -------------------------------------------------------------------------------- /develop/2015-07-16-jw-example-notebook-setup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbwhit/OSCON-2015/HEAD/develop/2015-07-16-jw-example-notebook-setup.html -------------------------------------------------------------------------------- /develop/2015-07-16-jw-example-notebook-setup.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbwhit/OSCON-2015/HEAD/develop/2015-07-16-jw-example-notebook-setup.ipynb -------------------------------------------------------------------------------- /develop/2015-07-16-jw-example-notebook-setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbwhit/OSCON-2015/HEAD/develop/2015-07-16-jw-example-notebook-setup.py -------------------------------------------------------------------------------- /develop/2015-07-24-jw-coal-productivity.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbwhit/OSCON-2015/HEAD/develop/2015-07-24-jw-coal-productivity.html -------------------------------------------------------------------------------- /develop/2015-07-24-jw-coal-productivity.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbwhit/OSCON-2015/HEAD/develop/2015-07-24-jw-coal-productivity.ipynb -------------------------------------------------------------------------------- /develop/2015-07-24-jw-coal-productivity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbwhit/OSCON-2015/HEAD/develop/2015-07-24-jw-coal-productivity.py -------------------------------------------------------------------------------- /develop/Simple%20Demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbwhit/OSCON-2015/HEAD/develop/Simple%20Demo.html -------------------------------------------------------------------------------- /develop/Simple%20Demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbwhit/OSCON-2015/HEAD/develop/Simple%20Demo.ipynb -------------------------------------------------------------------------------- /develop/Simple%20Demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbwhit/OSCON-2015/HEAD/develop/Simple%20Demo.py -------------------------------------------------------------------------------- /figures/2015-07-16-jw-production-vs-hours-worked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbwhit/OSCON-2015/HEAD/figures/2015-07-16-jw-production-vs-hours-worked.png -------------------------------------------------------------------------------- /figures/2015-07-24-jw-production-vs-hours-worked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbwhit/OSCON-2015/HEAD/figures/2015-07-24-jw-production-vs-hours-worked.png -------------------------------------------------------------------------------- /figures/2097753744_184f05d463_z.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbwhit/OSCON-2015/HEAD/figures/2097753744_184f05d463_z.jpg -------------------------------------------------------------------------------- /figures/3013680713_cfcebbd403_z.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbwhit/OSCON-2015/HEAD/figures/3013680713_cfcebbd403_z.jpg -------------------------------------------------------------------------------- /figures/attribute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbwhit/OSCON-2015/HEAD/figures/attribute.txt -------------------------------------------------------------------------------- /figures/bird-leaf.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbwhit/OSCON-2015/HEAD/figures/bird-leaf.jpg -------------------------------------------------------------------------------- /figures/confused-brad.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbwhit/OSCON-2015/HEAD/figures/confused-brad.gif -------------------------------------------------------------------------------- /figures/production-vs-hours-worked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbwhit/OSCON-2015/HEAD/figures/production-vs-hours-worked.png -------------------------------------------------------------------------------- /figures/production-vs-number-employees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbwhit/OSCON-2015/HEAD/figures/production-vs-number-employees.png -------------------------------------------------------------------------------- /figures/tom-ex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbwhit/OSCON-2015/HEAD/figures/tom-ex.html -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/simpleexample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbwhit/OSCON-2015/HEAD/src/simpleexample.py --------------------------------------------------------------------------------