-
-
Save amankharwal/de24dca9aa37391574896fff66f6939c to your computer and use it in GitHub Desktop.
This file contains 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
plt.figure(figsize=(10, 4)) | |
plt.title("INR - USD Exchange Rate") | |
plt.xlabel("Date") | |
plt.ylabel("Close") | |
plt.plot(data["Close"]) | |
plt.show() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment