Para este ejercicio vamos analizar la informacion referente a las llamadas al 911 Kaggle. La informacion contiene los siguientes campos:
Import numpy and pandas
In [24]:
import numpy as np
import pandas as pd
Import visualization libraries and set %matplotlib inline.
In [25]:
import matplotlib.pyplot as plt
import seaborn as sns
sns.set_style('whitegrid')
%matplotlib inline
Read in the csv file as a dataframe called df
In [26]:
df = pd.read_csv('911.csv')
Check the info() of the df
In [27]:
df.info()
Check the head of df
In [28]:
df.head(3)
Out[28]:
What are the top 5 zipcodes for 911 calls?
In [29]:
df['zip'].value_counts().head(5)
Out[29]:
What are the top 5 townships (twp) for 911 calls?
In [30]:
df['twp'].value_counts().head(5)
Out[30]:
Take a look at the 'title' column, how many unique title codes are there?
In [31]:
df['title'].nunique()
Out[31]:
In the titles column there are "Reasons/Departments" specified before the title code. These are EMS, Fire, and Traffic. Use .apply() with a custom lambda expression to create a new column called "Reason" that contains this string value.
For example, if the title column value is EMS: BACK PAINS/INJURY , the Reason column value would be EMS.
In [32]:
df['Reason'] = df['title'].apply(lambda title: title.split(':')[0])
What is the most common Reason for a 911 call based off of this new column?
In [33]:
df['Reason'].value_counts()
Out[33]:
Now use seaborn to create a countplot of 911 calls by Reason.
In [34]:
sns.countplot(x='Reason',data=df,palette='viridis')
Out[34]:
Now let us begin to focus on time information. What is the data type of the objects in the timeStamp column?
In [35]:
type(df['timeStamp'].iloc[0])
Out[35]:
You should have seen that these timestamps are still strings. Use pd.to_datetime to convert the column from strings to DateTime objects.
In [36]:
df['timeStamp'] = pd.to_datetime(df['timeStamp'])
You can now grab specific attributes from a Datetime object by calling them. For example:
time = df['timeStamp'].iloc[0]
time.hour
You can use Jupyter's tab method to explore the various attributes you can call. Now that the timestamp column are actually DateTime objects, use .apply() to create 3 new columns called Hour, Month, and Day of Week. You will create these columns based off of the timeStamp column, reference the solutions if you get stuck on this step.
In [37]:
df['Hour'] = df['timeStamp'].apply(lambda time: time.hour)
df['Month'] = df['timeStamp'].apply(lambda time: time.month)
df['Day of Week'] = df['timeStamp'].apply(lambda time: time.dayofweek)
Notice how the Day of Week is an integer 0-6. Use the .map() with this dictionary to map the actual string names to the day of the week:
dmap = {0:'Mon',1:'Tue',2:'Wed',3:'Thu',4:'Fri',5:'Sat',6:'Sun'}
In [38]:
dmap = {0:'Mon',1:'Tue',2:'Wed',3:'Thu',4:'Fri',5:'Sat',6:'Sun'}
In [39]:
df['Day of Week'] = df['Day of Week'].map(dmap)
Now use seaborn to create a countplot of the Day of Week column with the hue based off of the Reason column.
In [40]:
sns.countplot(x='Day of Week',data=df,hue='Reason',palette='viridis')
# To relocate the legend
plt.legend(bbox_to_anchor=(1.05, 1), loc=2, borderaxespad=0.)
Out[40]:
Now do the same for Month:
In [41]:
sns.countplot(x='Month',data=df,hue='Reason',palette='viridis')
# To relocate the legend
plt.legend(bbox_to_anchor=(1.05, 1), loc=2, borderaxespad=0.)
Out[41]:
Did you notice something strange about the Plot?
In [42]:
# It is missing some months! 9,10, and 11 are not there.
You should have noticed it was missing some Months, let's see if we can maybe fill in this information by plotting the information in another way, possibly a simple line plot that fills in the missing months, in order to do this, we'll need to do some work with pandas...
Now create a gropuby object called byMonth, where you group the DataFrame by the month column and use the count() method for aggregation. Use the head() method on this returned DataFrame.
In [43]:
byMonth = df.groupby('Month').count()
byMonth.head()
Out[43]:
Now create a simple plot off of the dataframe indicating the count of calls per month.
In [44]:
# Could be any column
byMonth['twp'].plot()
Out[44]:
Now see if you can use seaborn's lmplot() to create a linear fit on the number of calls per month. Keep in mind you may need to reset the index to a column.
In [45]:
sns.lmplot(x='Month',y='twp',data=byMonth.reset_index())
Out[45]:
Create a new column called 'Date' that contains the date from the timeStamp column. You'll need to use apply along with the .date() method.
In [46]:
df['Date']=df['timeStamp'].apply(lambda t: t.date())
Now groupby this Date column with the count() aggregate and create a plot of counts of 911 calls.
In [47]:
df.groupby('Date').count()['twp'].plot()
plt.tight_layout()
Now recreate this plot but create 3 separate plots with each plot representing a Reason for the 911 call
In [48]:
df[df['Reason']=='Traffic'].groupby('Date').count()['twp'].plot()
plt.title('Traffic')
plt.tight_layout()
In [49]:
df[df['Reason']=='Fire'].groupby('Date').count()['twp'].plot()
plt.title('Fire')
plt.tight_layout()
In [50]:
df[df['Reason']=='EMS'].groupby('Date').count()['twp'].plot()
plt.title('EMS')
plt.tight_layout()
Now let's move on to creating heatmaps with seaborn and our data. We'll first need to restructure the dataframe so that the columns become the Hours and the Index becomes the Day of the Week. There are lots of ways to do this, but I would recommend trying to combine groupby with an unstack method. Reference the solutions if you get stuck on this!
In [51]:
dayHour = df.groupby(by=['Day of Week','Hour']).count()['Reason'].unstack()
dayHour.head()
Out[51]:
Now create a HeatMap using this new DataFrame.
In [52]:
plt.figure(figsize=(12,6))
sns.heatmap(dayHour,cmap='viridis')
Out[52]:
Now create a clustermap using this DataFrame.
In [53]:
sns.clustermap(dayHour,cmap='viridis')
Out[53]:
Now repeat these same plots and operations, for a DataFrame that shows the Month as the column.
In [54]:
dayMonth = df.groupby(by=['Day of Week','Month']).count()['Reason'].unstack()
dayMonth.head()
Out[54]:
In [55]:
plt.figure(figsize=(12,6))
sns.heatmap(dayMonth,cmap='viridis')
Out[55]:
In [56]:
sns.clustermap(dayMonth,cmap='viridis')
Out[56]: