Gianluca Mauro
1 min readMar 28, 2017

--

Glad you liked it!

I used some simple Matplotlib functions, adding on the same plot a bunch of daily load profiles with opacity set at 0.1.

Code:

for day in all_days: 
plt.plot(df[day].index.hour, df[day][‘Electricity:Facility[kW].(Hourly)’], color=(0,0,0,0.1))
plt.show()

--

--

Gianluca Mauro
Gianluca Mauro

Written by Gianluca Mauro

Founder of AI Academy and author of Zero to AI. On a mission to empower organizations and people to prosper in the AI era.

No responses yet