# imports
import pandas as pd
import seaborn as sns
import matplotlib.pyplot as plt
import numpy as np
%matplotlib inline
# load hourly data
hourly_data = pd.read_csv('<https://mycontent.com/>'\\
'Workshops/'\\
'tdAnalysis/'\\
'/data/hour.csv')
# print some generic statistics about the data
print(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 columns
hourly_data.describe().T