Skip to content

Instantly share code, notes, and snippets.

@techwithshadab
Created November 3, 2021 20:54
Show Gist options
  • Save techwithshadab/d5dda89059086bcf9550a5b259fdb0d2 to your computer and use it in GitHub Desktop.
Save techwithshadab/d5dda89059086bcf9550a5b259fdb0d2 to your computer and use it in GitHub Desktop.
# Closing Price History
fig, ax = plt.subplots(figsize=(15, 8))
ax.plot(df)
plt.title('Close Price History')
plt.xlabel('Date',fontsize =20)
plt.ylabel('Price in USD',fontsize = 20)
ax.legend(df.columns.values)
plt.show()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment