├── .gitignore ├── README.md ├── analysis ├── clustering │ ├── analyze_clusters.py │ ├── clusterit.py │ └── maps │ │ ├── 10 Cluster.pdf │ │ ├── 2 Cluster.pdf │ │ ├── 4 Cluster.pdf │ │ ├── 50 Cluster.pdf │ │ ├── 6 Cluster.pdf │ │ └── Michael's 6 Cluster.png ├── nice_images │ ├── 1-potholes-monthly.png │ ├── 2-potholes-dayofweek.png │ ├── 3-rodent-baiting-monthly.png │ ├── 4-rodent-baiting-dayofweek.png │ ├── 5-figure_1.png │ ├── 6-graffiti_latinos_2.png │ ├── 7-graffiti_latinos_1.png │ └── clustering │ │ ├── 10 Cluster.pdf │ │ ├── 2 Cluster.pdf │ │ ├── 4 Cluster.pdf │ │ ├── 50 Cluster.pdf │ │ ├── 6 Cluster.pdf │ │ └── Michael's 6 Cluster.png ├── prediction │ ├── poisson_glm_graffiti.R │ └── poisson_glm_potholes.R └── viz │ └── viz_311_data.py ├── data ├── acs_2007_11_tract_variables.csv ├── chicago-community-areas.csv └── tract_neighbors.csv ├── munging ├── acs_census │ ├── ACS_2007_11.R │ └── ACS_KeyVariables.R ├── gen_comm_area_data.py ├── get_portal_311.py └── open_311_munging.py └── wiki_figures ├── 311_clusters.png ├── 311_clusters_ethnicity.png ├── graffiti_monthly.png ├── kmeans.png ├── potholes_dayofweek.png ├── potholes_monthly.png └── race_income_311.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dssg/411-on-311/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dssg/411-on-311/HEAD/README.md -------------------------------------------------------------------------------- /analysis/clustering/analyze_clusters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dssg/411-on-311/HEAD/analysis/clustering/analyze_clusters.py -------------------------------------------------------------------------------- /analysis/clustering/clusterit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dssg/411-on-311/HEAD/analysis/clustering/clusterit.py -------------------------------------------------------------------------------- /analysis/clustering/maps/10 Cluster.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dssg/411-on-311/HEAD/analysis/clustering/maps/10 Cluster.pdf -------------------------------------------------------------------------------- /analysis/clustering/maps/2 Cluster.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dssg/411-on-311/HEAD/analysis/clustering/maps/2 Cluster.pdf -------------------------------------------------------------------------------- /analysis/clustering/maps/4 Cluster.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dssg/411-on-311/HEAD/analysis/clustering/maps/4 Cluster.pdf -------------------------------------------------------------------------------- /analysis/clustering/maps/50 Cluster.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dssg/411-on-311/HEAD/analysis/clustering/maps/50 Cluster.pdf -------------------------------------------------------------------------------- /analysis/clustering/maps/6 Cluster.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dssg/411-on-311/HEAD/analysis/clustering/maps/6 Cluster.pdf -------------------------------------------------------------------------------- /analysis/clustering/maps/Michael's 6 Cluster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dssg/411-on-311/HEAD/analysis/clustering/maps/Michael's 6 Cluster.png -------------------------------------------------------------------------------- /analysis/nice_images/1-potholes-monthly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dssg/411-on-311/HEAD/analysis/nice_images/1-potholes-monthly.png -------------------------------------------------------------------------------- /analysis/nice_images/2-potholes-dayofweek.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dssg/411-on-311/HEAD/analysis/nice_images/2-potholes-dayofweek.png -------------------------------------------------------------------------------- /analysis/nice_images/3-rodent-baiting-monthly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dssg/411-on-311/HEAD/analysis/nice_images/3-rodent-baiting-monthly.png -------------------------------------------------------------------------------- /analysis/nice_images/4-rodent-baiting-dayofweek.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dssg/411-on-311/HEAD/analysis/nice_images/4-rodent-baiting-dayofweek.png -------------------------------------------------------------------------------- /analysis/nice_images/5-figure_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dssg/411-on-311/HEAD/analysis/nice_images/5-figure_1.png -------------------------------------------------------------------------------- /analysis/nice_images/6-graffiti_latinos_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dssg/411-on-311/HEAD/analysis/nice_images/6-graffiti_latinos_2.png -------------------------------------------------------------------------------- /analysis/nice_images/7-graffiti_latinos_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dssg/411-on-311/HEAD/analysis/nice_images/7-graffiti_latinos_1.png -------------------------------------------------------------------------------- /analysis/nice_images/clustering/10 Cluster.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dssg/411-on-311/HEAD/analysis/nice_images/clustering/10 Cluster.pdf -------------------------------------------------------------------------------- /analysis/nice_images/clustering/2 Cluster.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dssg/411-on-311/HEAD/analysis/nice_images/clustering/2 Cluster.pdf -------------------------------------------------------------------------------- /analysis/nice_images/clustering/4 Cluster.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dssg/411-on-311/HEAD/analysis/nice_images/clustering/4 Cluster.pdf -------------------------------------------------------------------------------- /analysis/nice_images/clustering/50 Cluster.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dssg/411-on-311/HEAD/analysis/nice_images/clustering/50 Cluster.pdf -------------------------------------------------------------------------------- /analysis/nice_images/clustering/6 Cluster.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dssg/411-on-311/HEAD/analysis/nice_images/clustering/6 Cluster.pdf -------------------------------------------------------------------------------- /analysis/nice_images/clustering/Michael's 6 Cluster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dssg/411-on-311/HEAD/analysis/nice_images/clustering/Michael's 6 Cluster.png -------------------------------------------------------------------------------- /analysis/prediction/poisson_glm_graffiti.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dssg/411-on-311/HEAD/analysis/prediction/poisson_glm_graffiti.R -------------------------------------------------------------------------------- /analysis/prediction/poisson_glm_potholes.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dssg/411-on-311/HEAD/analysis/prediction/poisson_glm_potholes.R -------------------------------------------------------------------------------- /analysis/viz/viz_311_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dssg/411-on-311/HEAD/analysis/viz/viz_311_data.py -------------------------------------------------------------------------------- /data/acs_2007_11_tract_variables.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dssg/411-on-311/HEAD/data/acs_2007_11_tract_variables.csv -------------------------------------------------------------------------------- /data/chicago-community-areas.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dssg/411-on-311/HEAD/data/chicago-community-areas.csv -------------------------------------------------------------------------------- /data/tract_neighbors.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dssg/411-on-311/HEAD/data/tract_neighbors.csv -------------------------------------------------------------------------------- /munging/acs_census/ACS_2007_11.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dssg/411-on-311/HEAD/munging/acs_census/ACS_2007_11.R -------------------------------------------------------------------------------- /munging/acs_census/ACS_KeyVariables.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dssg/411-on-311/HEAD/munging/acs_census/ACS_KeyVariables.R -------------------------------------------------------------------------------- /munging/gen_comm_area_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dssg/411-on-311/HEAD/munging/gen_comm_area_data.py -------------------------------------------------------------------------------- /munging/get_portal_311.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dssg/411-on-311/HEAD/munging/get_portal_311.py -------------------------------------------------------------------------------- /munging/open_311_munging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dssg/411-on-311/HEAD/munging/open_311_munging.py -------------------------------------------------------------------------------- /wiki_figures/311_clusters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dssg/411-on-311/HEAD/wiki_figures/311_clusters.png -------------------------------------------------------------------------------- /wiki_figures/311_clusters_ethnicity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dssg/411-on-311/HEAD/wiki_figures/311_clusters_ethnicity.png -------------------------------------------------------------------------------- /wiki_figures/graffiti_monthly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dssg/411-on-311/HEAD/wiki_figures/graffiti_monthly.png -------------------------------------------------------------------------------- /wiki_figures/kmeans.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dssg/411-on-311/HEAD/wiki_figures/kmeans.png -------------------------------------------------------------------------------- /wiki_figures/potholes_dayofweek.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dssg/411-on-311/HEAD/wiki_figures/potholes_dayofweek.png -------------------------------------------------------------------------------- /wiki_figures/potholes_monthly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dssg/411-on-311/HEAD/wiki_figures/potholes_monthly.png -------------------------------------------------------------------------------- /wiki_figures/race_income_311.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dssg/411-on-311/HEAD/wiki_figures/race_income_311.png --------------------------------------------------------------------------------