You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# print(covid_19.head()) # prints first 5 table values.
# print(covid_19.info()) # Info about the csv file.
# print(covid_19.shape) # prints no. of rows, no. of columns
# print(covid_19['State'].unique(),covid_19['State'].nunique()) # array of unique values of objects in State column, nunique for number of such unique objects.