# importsimport pandas as pdimport seaborn as snsimport matplotlib.pyplot as pltimport numpy as np%matplotlib inline# load hourly datahourly_data = pd.read_csv('<https://mycontent.com/>'\\'Workshops/'\\'tdAnalysis/'\\'/data/hour.csv')
# print some generic statistics about the dataprint(f"Shape of data: {hourly_data.shape}")print(f"Number of missing values in the data:\\{hourly_data.isnull().sum().sum()}")
Shape of data: (17379,17)Number of missing values in the data:0
# get statistics on the numerical columnshourly_data.describe().T