Created
July 30, 2019 22:20
-
-
Save kperry2215/aa65554965ff7bf88e7703c90d2dfcad to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Create a histogram of counts by hour | |
ax=peak_demand_hour_df['Peak_Demand_Hour'].value_counts().plot(kind='bar', | |
title='Peak Demand Hour by Number of Occurrences') | |
ax.set_xlabel("Demand Hour (0-23 hour)") | |
ax.set_ylabel("Number of Occurrences") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment