I am trying to work on the time_series_2019-ncov-Confirmed.csv
dataset. I wanted to plot only the conformed cases in China, Italy, Germany, Iran, and USA.
I have coded as shown below, can anyone suggest me how do I achieve my expected results.
import numpy as np
import pandas as pd
import csv
file = r'C:\Users\Tiago\Desktop\Senior Year - 2019.2020\ME 130\Coronovirus Datasets\time_series_2019-ncov-Confirmed.xlsx'
data = pd.ExcelFile(file)
print(data.sheet_names)
['Worksheet']
df = data.parse('Worksheet')
df.info
df.head(400)