Learn practical skills, build real-world projects, and advance your career

Data Visualization of COVID-19 Confirmed Cases in the World

Note that these plots have been done after dropping the columns where 70% number of confirmed cases is zero.

Countrywise Plot

#imported all the required packages
import pandas as pd
import numpy as np
import seaborn as snb
import matplotlib.pyplot as plt
%matplotlib inline
#Specified the path to my dataset and loaded it in a dataframe
df_covid = pd.read_csv('https://raw.githubusercontent.com/Yogita98/Data-Visualization-of-Corona-Positive-Cases/master/time_series_2019-ncov-Confirmed.csv',index_col=0)
df_conti=pd.read_csv('https://raw.githubusercontent.com/Yogita98/Data-Visualization-of-Corona-Positive-Cases/master/c2c.csv')