I have project instructions, requirements, and the output that is attached. Please use the Jupiter Notebook file and write the code to get exactly the same output. I need the whole code in one cell
Given: # Run cell to import libraries
import geopandas as gpd
import pandas as pd
import matplotlib.pyplot as plt
import contextily
import mapclassify
import folium
import aiohttp
import fsspec
# This loads geodataframe contaning county geometry shapes
c = “https://github.com/babdelfa/gis/blob/main/counties_geometry.zip?raw=true”
import fsspec
with fsspec.open(c) as file:
county_shapes = gpd.read_file(file)
# This loads the most recent covid19 data from Johns Hopkins University’s Github
url_cases = “https://raw.githubusercontent.com/CSSEGISandData/COVID-19/master/csse_covid_19_data/csse_covid_19_time_series/time_series_covid19_confirmed_US.csv”
df_cases = pd.read_csv(url_cases)
url_deaths = “https://github.com/CSSEGISandData/COVID-19/raw/master/csse_covid_19_data/csse_covid_19_time_series/time_series_covid19_deaths_US.csv”
df_deaths = pd.read_csv(url_deaths)
Place this order or similar order and get an amazing discount. USE Discount code “GET20” for 20% discount