├── GIFs ├── bar_charts.gif ├── basic_choropleth_map.gif ├── cumulative_time_series.gif ├── dotplot.gif └── time_series.gif ├── README.md ├── data_visualisations ├── README.md ├── dotplot.R ├── heatmap.R └── waffle_charts.R ├── images ├── advanced_choropleth_map_app.png ├── bar_charts_app.png ├── basic_choropleth_map_app.png ├── calendar_heatmap.png ├── cumulative_times_series_app.png ├── dotplot.png ├── dotplot_app.png ├── raw.png ├── time_series_app.png └── waffle.png ├── sample_data ├── crime_data.csv └── tidying_data.R ├── scripts ├── repeat_locations.R ├── summary_statistics.R └── the_80-20_rule.R └── shinyapps ├── README.md ├── advanced_choropleth_map ├── README.md ├── app.R ├── crime_data.csv └── manchester_lsoa.geojson ├── bar_charts ├── README.md ├── app.R └── crime_data.csv ├── basic_choropleth_map ├── README.md ├── app.R ├── crime_data.csv └── manchester_lsoa.geojson ├── cumulative_time_series ├── README.md ├── app.R ├── crime_data_2013-2015.rds └── tidying_3_years_of_data.R ├── dotplot ├── README.md ├── app.R └── crime_data.csv └── time_series ├── README.md ├── app.R ├── crime_data.csv └── dygraph.css /GIFs/bar_charts.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcatlord/crime_analysis/HEAD/GIFs/bar_charts.gif -------------------------------------------------------------------------------- /GIFs/basic_choropleth_map.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcatlord/crime_analysis/HEAD/GIFs/basic_choropleth_map.gif -------------------------------------------------------------------------------- /GIFs/cumulative_time_series.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcatlord/crime_analysis/HEAD/GIFs/cumulative_time_series.gif -------------------------------------------------------------------------------- /GIFs/dotplot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcatlord/crime_analysis/HEAD/GIFs/dotplot.gif -------------------------------------------------------------------------------- /GIFs/time_series.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcatlord/crime_analysis/HEAD/GIFs/time_series.gif -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcatlord/crime_analysis/HEAD/README.md -------------------------------------------------------------------------------- /data_visualisations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcatlord/crime_analysis/HEAD/data_visualisations/README.md -------------------------------------------------------------------------------- /data_visualisations/dotplot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcatlord/crime_analysis/HEAD/data_visualisations/dotplot.R -------------------------------------------------------------------------------- /data_visualisations/heatmap.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcatlord/crime_analysis/HEAD/data_visualisations/heatmap.R -------------------------------------------------------------------------------- /data_visualisations/waffle_charts.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcatlord/crime_analysis/HEAD/data_visualisations/waffle_charts.R -------------------------------------------------------------------------------- /images/advanced_choropleth_map_app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcatlord/crime_analysis/HEAD/images/advanced_choropleth_map_app.png -------------------------------------------------------------------------------- /images/bar_charts_app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcatlord/crime_analysis/HEAD/images/bar_charts_app.png -------------------------------------------------------------------------------- /images/basic_choropleth_map_app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcatlord/crime_analysis/HEAD/images/basic_choropleth_map_app.png -------------------------------------------------------------------------------- /images/calendar_heatmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcatlord/crime_analysis/HEAD/images/calendar_heatmap.png -------------------------------------------------------------------------------- /images/cumulative_times_series_app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcatlord/crime_analysis/HEAD/images/cumulative_times_series_app.png -------------------------------------------------------------------------------- /images/dotplot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcatlord/crime_analysis/HEAD/images/dotplot.png -------------------------------------------------------------------------------- /images/dotplot_app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcatlord/crime_analysis/HEAD/images/dotplot_app.png -------------------------------------------------------------------------------- /images/raw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcatlord/crime_analysis/HEAD/images/raw.png -------------------------------------------------------------------------------- /images/time_series_app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcatlord/crime_analysis/HEAD/images/time_series_app.png -------------------------------------------------------------------------------- /images/waffle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcatlord/crime_analysis/HEAD/images/waffle.png -------------------------------------------------------------------------------- /sample_data/crime_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcatlord/crime_analysis/HEAD/sample_data/crime_data.csv -------------------------------------------------------------------------------- /sample_data/tidying_data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcatlord/crime_analysis/HEAD/sample_data/tidying_data.R -------------------------------------------------------------------------------- /scripts/repeat_locations.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcatlord/crime_analysis/HEAD/scripts/repeat_locations.R -------------------------------------------------------------------------------- /scripts/summary_statistics.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcatlord/crime_analysis/HEAD/scripts/summary_statistics.R -------------------------------------------------------------------------------- /scripts/the_80-20_rule.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcatlord/crime_analysis/HEAD/scripts/the_80-20_rule.R -------------------------------------------------------------------------------- /shinyapps/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcatlord/crime_analysis/HEAD/shinyapps/README.md -------------------------------------------------------------------------------- /shinyapps/advanced_choropleth_map/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcatlord/crime_analysis/HEAD/shinyapps/advanced_choropleth_map/README.md -------------------------------------------------------------------------------- /shinyapps/advanced_choropleth_map/app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcatlord/crime_analysis/HEAD/shinyapps/advanced_choropleth_map/app.R -------------------------------------------------------------------------------- /shinyapps/advanced_choropleth_map/crime_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcatlord/crime_analysis/HEAD/shinyapps/advanced_choropleth_map/crime_data.csv -------------------------------------------------------------------------------- /shinyapps/advanced_choropleth_map/manchester_lsoa.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcatlord/crime_analysis/HEAD/shinyapps/advanced_choropleth_map/manchester_lsoa.geojson -------------------------------------------------------------------------------- /shinyapps/bar_charts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcatlord/crime_analysis/HEAD/shinyapps/bar_charts/README.md -------------------------------------------------------------------------------- /shinyapps/bar_charts/app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcatlord/crime_analysis/HEAD/shinyapps/bar_charts/app.R -------------------------------------------------------------------------------- /shinyapps/bar_charts/crime_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcatlord/crime_analysis/HEAD/shinyapps/bar_charts/crime_data.csv -------------------------------------------------------------------------------- /shinyapps/basic_choropleth_map/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcatlord/crime_analysis/HEAD/shinyapps/basic_choropleth_map/README.md -------------------------------------------------------------------------------- /shinyapps/basic_choropleth_map/app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcatlord/crime_analysis/HEAD/shinyapps/basic_choropleth_map/app.R -------------------------------------------------------------------------------- /shinyapps/basic_choropleth_map/crime_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcatlord/crime_analysis/HEAD/shinyapps/basic_choropleth_map/crime_data.csv -------------------------------------------------------------------------------- /shinyapps/basic_choropleth_map/manchester_lsoa.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcatlord/crime_analysis/HEAD/shinyapps/basic_choropleth_map/manchester_lsoa.geojson -------------------------------------------------------------------------------- /shinyapps/cumulative_time_series/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcatlord/crime_analysis/HEAD/shinyapps/cumulative_time_series/README.md -------------------------------------------------------------------------------- /shinyapps/cumulative_time_series/app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcatlord/crime_analysis/HEAD/shinyapps/cumulative_time_series/app.R -------------------------------------------------------------------------------- /shinyapps/cumulative_time_series/crime_data_2013-2015.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcatlord/crime_analysis/HEAD/shinyapps/cumulative_time_series/crime_data_2013-2015.rds -------------------------------------------------------------------------------- /shinyapps/cumulative_time_series/tidying_3_years_of_data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcatlord/crime_analysis/HEAD/shinyapps/cumulative_time_series/tidying_3_years_of_data.R -------------------------------------------------------------------------------- /shinyapps/dotplot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcatlord/crime_analysis/HEAD/shinyapps/dotplot/README.md -------------------------------------------------------------------------------- /shinyapps/dotplot/app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcatlord/crime_analysis/HEAD/shinyapps/dotplot/app.R -------------------------------------------------------------------------------- /shinyapps/dotplot/crime_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcatlord/crime_analysis/HEAD/shinyapps/dotplot/crime_data.csv -------------------------------------------------------------------------------- /shinyapps/time_series/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcatlord/crime_analysis/HEAD/shinyapps/time_series/README.md -------------------------------------------------------------------------------- /shinyapps/time_series/app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcatlord/crime_analysis/HEAD/shinyapps/time_series/app.R -------------------------------------------------------------------------------- /shinyapps/time_series/crime_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcatlord/crime_analysis/HEAD/shinyapps/time_series/crime_data.csv -------------------------------------------------------------------------------- /shinyapps/time_series/dygraph.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcatlord/crime_analysis/HEAD/shinyapps/time_series/dygraph.css --------------------------------------------------------------------------------