Skip to content

Instantly share code, notes, and snippets.

@MJacobs1985
Created February 21, 2022 13:55
Show Gist options
  • Select an option

  • Save MJacobs1985/f8d78c39b9287be506bdb8794b656218 to your computer and use it in GitHub Desktop.

Select an option

Save MJacobs1985/f8d78c39b9287be506bdb8794b656218 to your computer and use it in GitHub Desktop.
m2 <- auto.arima(test,
ic="aic",
seasonal=FALSE,
stationary=TRUE,
stepwise=FALSE,
approximation=FALSE)
ggtsdiag(m2, gof.lag = 14)+theme_bw()
m1.Mul.F <- forecast(m1, length(test))
plot(m1.Mul.F)
autoplot(m1.Mul.F)+theme_bw()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment