You are now finished with college and doing some research on where to apply for a job. Workng in a safe state would be a great start.
Scrape the FBI arrest by state table provided on ucr.fbi.gov. The table is available at the link below.
https://ucr.fbi.gov/crime-in-the-u.s/2015/crime-in-the-u.s.-2015/tables/table-69
Suggested Approach:
Sample Output:
In [ ]:
import requests
from bs4 import BeautifulSoup
import matplotlib.pyplot as plt
import pandas as pd
%matplotlib notebook
plt.rcParams["figure.figsize"] = [12, 6]
In [ ]: