Skip to content

Instantly share code, notes, and snippets.

@kiddojazz
Created January 15, 2023 16:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kiddojazz/3e72d899d0a7bc9852e2dbce83cc9df6 to your computer and use it in GitHub Desktop.
Save kiddojazz/3e72d899d0a7bc9852e2dbce83cc9df6 to your computer and use it in GitHub Desktop.
#Visualization of the Closing price
plt.figure(figsize=(16,8))
plt.title("Closing Price History")
plt.plot(goog_hist["Close"])
plt.xlabel("Date", fontsize=18)
plt.ylabel("Closing Price USD $", fontsize=18)
plt.show()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment