Learn practical skills, build real-world projects, and advance your career
import pandas as pd
import numpy as np
covid_df= pd.read_csv('italy-covid-daywise.csv')
covid_df.head(100)
type(covid_df)
pandas.core.frame.DataFrame
covid_df.info()
<class 'pandas.core.frame.DataFrame'> RangeIndex: 248 entries, 0 to 247 Data columns (total 4 columns): # Column Non-Null Count Dtype --- ------ -------------- ----- 0 date 248 non-null object 1 new_cases 248 non-null float64 2 new_deaths 248 non-null float64 3 new_tests 135 non-null float64 dtypes: float64(3), object(1) memory usage: 7.9+ KB