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()