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
import pandas as pd | |
import numpy as np | |
import yfinance as yf | |
import seaborn as sns | |
import matplotlib.pyplot as plt | |
data = yf.download('MSFT', '2015-01-01') | |
data['Close'].plot(figsize=(10,7)) | |
plt.title('Microsoft Stock Close Price') | |
plt.ylabel('Price') | |
plt.show() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment