Created
February 21, 2020 06:46
-
-
Save quantra-go-algo/ae3df5e283d178f19385b7197d16dfb4 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
from pandas import read_csv | |
from matplotlib import pyplot | |
from statsmodels.graphics.tsaplots import plot_pacf | |
series = read_csv ('Series dj$Index’.csv', header=0, index_col=0) | |
plot_pacf(series, lags=20) | |
pyplot.show() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment