Skip to content

Analyzing Police Activity with pandas

Run the hidden code cell below to import the data used in this course.

# Import pandas
import pandas as pd

# Import the course datasets 
police = pd.read_csv('datasets/police.csv')
weather = pd.read_csv('datasets/weather.csv')

Take Notes

Add notes about the concepts you've learned and code cells with code you want to keep.

Add your notes here

# Add your code snippets here
print(police.head())
print(weather.head())