Skip to content
This repository has been archived by the owner on Jan 5, 2023. It is now read-only.

2.6.x Plot the Discharge against time gives Warning #86

Open
scottdangelo opened this issue Oct 8, 2019 · 0 comments
Open

2.6.x Plot the Discharge against time gives Warning #86

scottdangelo opened this issue Oct 8, 2019 · 0 comments

Comments

@scottdangelo
Copy link
Member

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]))```
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant