Python Exercise: Visualize Worldwide Confirmed Novel Coronavirus cases over time
Python Project: COVID-19 Exercise-14 with Solution
Write a Python program to visualize Worldwide Confirmed Novel Coronavirus (COVID-19) cases over time.
Sample Solution:
Python Code:
import pandas as pd
import plotly.express as px
import plotly.io as pio
pio.templates.default = "plotly_dark"
covid_data= pd.read_csv('https://raw.githubusercontent.com/CSSEGISandData/COVID-19/master/csse_covid_19_data/csse_covid_19_daily_reports/03-19-2020.csv')
grouped = covid_data.groupby('Last Update')['Last Update', 'Confirmed', 'Deaths'].sum().reset_index()
fig = px.line(grouped, x="Last Update", y="Confirmed",
title="Worldwide Confirmed Novel Coronavirus(COVID-19) Cases Over Time")
fig.show()
Jupyter Notebook:
Have another way to solve this solution? Contribute your code (and comments) through Disqus.
Download the above Notebook from here.
What is the difficulty level of this exercise?
It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.
https://198.211.115.131/python-exercises/project/covid-19/python-covid-19-exercise-14.php
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics