Created
November 3, 2021 20:54
-
-
Save techwithshadab/d5dda89059086bcf9550a5b259fdb0d2 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
# 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