Skip to content

tomtomwombat/Analyze-Boston

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

39 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Analyze Boston

title
The goal of this project was to create a path planning algorithm exclusive to Boston that avoids areas with frequent crime rates. The project uses Boston crime data since 2015 and Boston street map data, both pulled from https://data.boston.gov/. The crimes.csv file (original crime data) was to large to add to the GitHub repo, so here is the link: https://data.boston.gov/dataset/crime-incident-reports-august-2015-to-date-source-new-system. This project also uses the tkinter python library for graphics, which is more involved to install than other normal python modules: https://tkdocs.com/tutorial/install.html.

To start the GUI run "main.py" in src. "setup_main.py" was run once to generate predictions and clusters and does not need to be run again unless you want to change the number of clusters used and recluster and predict. "setup_main.py" takes about 20 minutes to run.

Inital Processing of .geojson Data

Before anything could be done, I needed to parse the "street_data.json" into a graph object stored in a table and remove any disconnected sections of the graph. To create a graph, "parse_street_data.py" identifies intersections in streets using their latitude and longitude coordinates and creates a new node. Nodes are labeled as consecutive integers 0, 1, 2... etc. A second pass is done to determine the edges by using the (latitude,longitude):node mapping. After all the nodes and edges were parsed, disconnected sections of the graph were identified by a simple BFS. Disconnected street names were recorded and ignored during further processing. This code is found in src/Preprocessing and the final graph data is stored in "edge_data.csv".

Setup

The project uses 3 main algorithms: Dijkstra's algorithm, spectral clustering, and SARIMA modeling. I have already studied Dijkstra's algorithm, but spectral clustering and SARIMA were new to me and I wanted to learn and use them. The bulk of the computational math in the project is setting up the clusters and crime predictions. "setup_main.py" orchestrates this whole process, and Dijkstra's algorithm is run during runtime in the GUI.

Spectral Clustering

This runs the spectral clustering algorithm on the graph. The Map object in "load_streets.py" produced an adjacency matrix A, where A[i][j] = A[j][i] and A[i][j] = 1/d, where d is the distance from node i to node j. D is the diagonal degree matrix, where D[i][i] is the number of edges coming out of node i. The laplacian matrix, L, is defined as D - A, and is also symmetric. The normalized laplacian, Lnorm, is defined as I - (D^-1/2)L((D^-1/2)). The k eigenvectors corresponding to the k smallest eigenvalues of Lnorm become n points in k dimensions where the entries of point i are the ith entries of each of the k eigenvectors. These points are fed into a standard clustering algorithm. A hierarchical clustering algorithm uses some formula for distance for a set of points in k dimensions. Every point begins as their own centroid. At each step, the closest clusters (distance from the cluster's centroid) are merged together, until the desired number of clusters is reached.

I initially tried to implement the spectral clustering algorithm myself, however I ran into problems with getting numpy/scipy to return the eigenvectors corresponding to the k smallest eigenvalues. Spectral clustering on Boston graph with 10 groups: An example of spectral clustering on the Boston streets

Spectral clustering breaks the graph up into components were nodes in different components are harder to reach than nodes in the same components. So each component is a group of tightly connected nodes. This is a good way to group streets because it is theoretically harder for someone to walk from one cluster to another, but easy to walk around in the same cluster.

Sorting Crimes into Clusters

After clustering the graph, I needed to then match the crimes with the geographical colored groups on the map. The problem looked as follows: The problem looked as follows

The black dots represent an instance of a crime at that location, and the map is overlapped with these crimes. You can see most of the crimes overlap perfectly with a street, but some don't. To match these crimes with a colored group in the graph, I used an algorithm similar to BFS. First, I rounded each of the coordinates of the nodes and placed into a cell of a grid of 1100x700 cells. Then, for each crime, I rounded it's coordinates and found its corresponding cell in the grid. If the cell that the crime was in also contained a node, then the crime became the same color/group as the node. Otherwise the algorithm looked for the closest cell that contained a node using simple search pattern of a an expanding square around the original crime's cell. It would take way to long to directly compare the distance of each street to each node and find the true closest one, so I used this strategy to get a good approximation.

Time Series Analysis

Each crime was now associated with a geographical group. The average number of crimes per day on a bi-monthly basis for each cluster was calculated and stored in Data/BiMonthly_Crimes.csv. The first thing I noticed was that crimes rate are seasonal. I think this is because people are generally more likely to be out and about during warmer temperatures and at home during the cold. At first I tried using time series on crime rates based on each day, but I found this took too much computation power and the model was not as accurate, so I decided on bi-monthly average crime rates. Below is the collective crime rates in total. monthly

Because the frequencies are seasonal, I decided to use time series analysis, specifically the SARIMA model from the statsmodels library. SARIMA stands for seasonal (S) auto regressive (AR) integrated (I) moving average (MA). For the project I did not go into great depths to understand of the model, so I will only explain the basics. I hope I can learn more about the SARIMA in the future though.

Autoregressive

An autoregressive model is where a data point can be forcasted by linear combination of past values in the data set: y[t] = c + a[0]*y[t-1] + ... + a[p-1]*y[t-p] + ε[t], where y is the data vaules and a is an array of constants and p is a parameter of how many past values to use to predict the next value: y[t]. ε[t] is to compensate for the difference between the actual value, y[t] and the rest of the math. An autoregrssive model with p terms is denoted as AR(p). The restictions for a[i] for a AR(1) model is that -1 < a[0] < 1 (there is only 1 element in a). For a AR(2) the restrictions are more complicated: -1 < a[1] < 1, a[0] + a[1] > -1, and a[0] - a[1] < 1. The restrictions for AR(p), p > 2 are more complicated and are dealt within the the statsmodels package, however it was good for to know that restrictions on a[i] exist.

Moving Average

The moving average model is very similar to the autoregressive model except that it uses a linear combination of ε[t] instead of the y values. MA(q) is a model where y[t] = c + b[0]*ε[t-1] + ... + b[q-1]*ε[t-q] + ε[t]. Here the next element depends on the past q errors/correction terms from previous model calcultions.

Differencing

Differencing is the process of transforming the data such that the new values become the difference between consecutive old values. For example given a list y = [1, 1, 2, 3, 5] the first difference is y' = [1 - 1, 2 - 1, 3 - 2, 5 - 3] = [0, 1, 1, 2]. Random note: I find it interesting that the dth difference of the fibonacci sequence is the fibonacci sequence itself.

ARIMA

The ARIMA model is the AR itegrated with the MA. The 3 parameters of an ARIMA model are (p,d,q) where p is the AR(p) order, d is the number of differences used on the data, and q is the order of MA(q). The expansion of the model is z[t] = c + (a[0]*z[t-1] + ... + a[p-1]*y[t-p]) + (b[0]*ε[t-1] + ... + b[q-1]*ε[t-q]) + ε[t], where z is the dth difference of y.

SARIMA

Finally a seasonaly component must be added. The difference between seasonal and cyclic behavior is that seasonal is cyclic but alligned with the seasons or months. The new paramenters of the SARIMA model are (P,D,Q) and m. m is number of observations per year, so if crimes frequencies were recorded monthly m would be 12 and for this project crime frequencies were calculated bi monthly so m is 24.

To find the best (p,d,q) and (P,D,Q) parameters for the model I used a "grid search" meaning that I tried all combinations of the parameters over a small range and compared their performance. The performance of the model with certain parameters was measured by the Akaike’s Information Criterion (AIC). AIC = -2log(L) + 2(p + q + k + 1). L is a likelyhood function of y, the data, and k = 0 if c = 0 else k = 1. I know there are other methods out there such as ACF and PACF plots but I didn't use them for this project.

After picking the set of parameters with the smallest AIC, I tested it on all the crimes in Boston. pred 1

The forcast's behavior is consistent with the behvior of previous values, and remains seasonal (peaks in the summer and troughs in the winter).

Using the same model I then predicted the crime frequencies about 2 years into the future for each geographical cluster. The image below is an example plot of such prediction. pred 1

It is less clear that the frequencies for a specifc cluster is seasonal, however you can see a slight peak every 24 halfmonths after the starting point of August (summer is highest frequencies of crimes). The orange prediction line predicts a spike around 120 half months after August 2015, which is the summer of 2020. The uncertaintity of the SARIMA model's predictions increases the further into the future they are.

There is a trade off with number of clusters and accuracy of the predictions. Obviosuly the predictions and seasonality are more obvious when using all the crime data, but a single cluster would not help much trying to disguish different geographical locations from each other based off of crime. If a 100 clusters were used I would have high "resolution" in the graph but the edge weights would not be accurate as I would not have much data for each SARIMA model. I chose 15 clusters because I thought it was the middle ground, this is just arbitrary.

Running GUI

After setup is run, main.py has all the data it needs to run. Each edge of nodes u and v was weighted by a linear combination of its "crime value" and length. The crime value was determined by the crime rate of the cluster u was in plus the crime rate of the cluster v was in and divided by two and then multilied by the length of the street. It is necassary to multiply by the length of the street to ensure that when crossing a high crime rate area that the shortest path is taken within that area, so the path "escapes" that crime area as efficiently as possible. When drawing the map I colored the clusters based on their crime rates. Red means higher crime rate and green means lower crime rate. As you change the time scale you can see that colors of each cluster change slightly, and the current path might even change too. The % crime weight slider changes the values of the edges by adjusting the weight of the crime value and length. edge.weight = p*crime_val + (1 - p) * crime_val where p is the % value of the slider. So if % crime weight was at 30 then the value of each edge is .3*crime_value + .7*length.

The graph search algorithm used was Dijkstra's algorithm which is a good algorithm to find minimum path from A to B in a graph. Everytime one of the parameters is changed in the GUI Dijkstra's algorithm is run again so that the path is refreshed. Below is the path when the % crime weight is 0, meaning that the path completly ignored the crime rates of the streets. comp1

You can see that the path goes straight through the red area (high crime area). After turning the % crime weight to 100, the length of the path is ignored and the crime rates are fully considered. comp2

You can see that the red region is totally avoided! Instead the algorithm finds a safer route through the greener areas around the red region.

Further improvements

Crime Rates throughout the Day

The main improvment I thought of was a path planning algorithm that considered the time of day in addition to the month of the year. It is quite obvious that the crime frequencies during the day are not random. Below is a plot of the number of crimes into total since 2015 vs when in the day they occurred. hour
You can see that minimum rate is around 4am to 6am and the maximum is during the afternon. The "spikey" nature is interesting. I think this is because police officers are more likely to record the time as a whole number for example 12:00 instead of 12:05 or 12:30, hence the upward spike during whole number hours. It would have been good to also incorporate a model for each cluster based off of the time of day and then use that in the edge values.

Different Types of Crimes

The crimes.csv file also contained the type of crime that was committed, which this project completely ignored. The project could have not used geographical clusters and instead used a linear combination of predicted rates for multiple different types of crimes. For example, I could use a prediction model for car accidents. Say someone wasn't worried about being mugged but was worried about having their car stolen or being in a car accident, then the user could tell the program to weight the car crashes rate or car theft rate more highly.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages