We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I am quite new in Python ...
NameError Traceback (most recent call last) in 1 acf_vals = acf(first_diff) ----> 2 plt.bar(range(num_lags), acf_vals[:num_lags])
May be you could check it.
Thank you, Christian
The text was updated successfully, but these errors were encountered:
num_lags = 10 acf_vals = acf(first_diff) plt.bar(range(num_lags), acf_vals[:num_lags])
Sorry, something went wrong.
No branches or pull requests
I am quite new in Python ...
When I run your ARMA-Code in Jupyter Notebook, I get an error after block [9] (i.e. acf_vals = acf(first_diff) .....):
NameError Traceback (most recent call last)
in
1 acf_vals = acf(first_diff)
----> 2 plt.bar(range(num_lags), acf_vals[:num_lags])
NameError: name 'num_lags' is not defined
May be you could check it.
Thank you,
Christian
The text was updated successfully, but these errors were encountered: