MIS 433 COVID19 Report

Give dataset:

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)

Need a custom answer at your budget?

This assignment has been answered 2 times in private sessions.

© 2024 Codify Tutor. All rights reserved