├── .gitignore ├── LICENSE.txt ├── README.md ├── code ├── custom_transformers.py ├── exploratory_data_analysis.py ├── main.py └── preprocess_raw_data.py ├── data ├── Special_Events_Permits.csv └── Special_Events_Permits_2016.csv ├── plots ├── hist_attendance.png └── hist_attendance_log.png └── slides.pdf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jem1031/pandas-pipelines-custom-transformers/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jem1031/pandas-pipelines-custom-transformers/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jem1031/pandas-pipelines-custom-transformers/HEAD/README.md -------------------------------------------------------------------------------- /code/custom_transformers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jem1031/pandas-pipelines-custom-transformers/HEAD/code/custom_transformers.py -------------------------------------------------------------------------------- /code/exploratory_data_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jem1031/pandas-pipelines-custom-transformers/HEAD/code/exploratory_data_analysis.py -------------------------------------------------------------------------------- /code/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jem1031/pandas-pipelines-custom-transformers/HEAD/code/main.py -------------------------------------------------------------------------------- /code/preprocess_raw_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jem1031/pandas-pipelines-custom-transformers/HEAD/code/preprocess_raw_data.py -------------------------------------------------------------------------------- /data/Special_Events_Permits.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jem1031/pandas-pipelines-custom-transformers/HEAD/data/Special_Events_Permits.csv -------------------------------------------------------------------------------- /data/Special_Events_Permits_2016.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jem1031/pandas-pipelines-custom-transformers/HEAD/data/Special_Events_Permits_2016.csv -------------------------------------------------------------------------------- /plots/hist_attendance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jem1031/pandas-pipelines-custom-transformers/HEAD/plots/hist_attendance.png -------------------------------------------------------------------------------- /plots/hist_attendance_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jem1031/pandas-pipelines-custom-transformers/HEAD/plots/hist_attendance_log.png -------------------------------------------------------------------------------- /slides.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jem1031/pandas-pipelines-custom-transformers/HEAD/slides.pdf --------------------------------------------------------------------------------