March 2020
Beginner to intermediate
352 pages
8h 40m
English
Let's visualize the time series dataset. We will continue using the same df_power dataframe:
import matplotlib.pyplot as pltimport seaborn as snssns.set(rc={'figure.figsize':(11, 4)})plt.rcParams['figure.figsize'] = (8,5)plt.rcParams['figure.dpi'] = 150
df_power['Consumption'].plot(linewidth=0.5)
The output of the preceding code is given here:

As depicted in the preceding screenshot, the y-axis shows the electricity consumption and the x-axis shows ...
Read now
Unlock full access