-
-
Notifications
You must be signed in to change notification settings - Fork 65
New issue
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
how to change the confidence level #199
Comments
Thanks for filing the issue! Have you observed similar behavior for other arguments as well? |
Hi I'm having the same issue with the parameter conf.int.type. autoplot(acf(AirPassengers, plot = FALSE), conf.int.type = 'ma') returns the following warning message: |
Any update on this question? |
@MonicaFialho I am not able to reproduce your issue. |
@FelipeCarrillo Looks like the confidence interval cannot be specified as part of
You should be able to see different plots by modifying the confidence levels through |
@terrytangyuan , I tried again, with ggfortify v0.4.10 and v0.4.11, and the result now is:
|
@MonicaFialho I guess the issue is that your model does not work with that particular confidence type then as it requires to have first lag that's equal to 0. |
I am trying to change the confidence level but conf.int.value gets ignored. Is there a workaround?
No matter what level I put, it gets ignored.
library(forecast)
library(ggfortify)
d.arima <- auto.arima(AirPassengers)
autoplot(d.arima, predict=predict(d.arima,n.ahead=3),ts.colour = 'blue', predict.colour = 'blue',
predict.linetype = 'dashed', conf.int = TRUE,conf.int.value=0.99)
The text was updated successfully, but these errors were encountered: