visualize-data-with-python icon indicating copy to clipboard operation
visualize-data-with-python copied to clipboard

2.6.x Plot the Discharge against time gives Warning

Open scottdangelo opened this issue 4 years ago • 0 comments

plt.plot(df['datetime'],df['Discharge(cfs)'])
plt.title('Houston Flood discharge at Hunting Bayou stream gauge')
plt.ylabel('Discharge(cfs)')
plt.xlabel('datetime')
ax = plt.gca()
df.set_index('datetime')

# Only label every 20th value
ticks_to_use = df.index[::100]
# label ticks per day
dr = pd.date_range('2017-08-23', periods=9, freq='D')

## Now set the ticks and labels
ax.set_xticks(ticks_to_use)
ax.set_xticklabels(dr)
plt.xticks(rotation='vertical')

plt.show()

yields:

  (prop.get_family(), self.defaultFamily[fontext]))```

scottdangelo avatar Oct 08 '19 15:10 scottdangelo