Reputation: 657
I want to run many models like this:
myModel = astsa::sarima(xdata = iris[,1], p = 1, d = 0, q = 0, xreg = iris[, 2:4], details = FALSE)
I would absolutely want to avoid the plots, because they slow everything down. Is there a way? I did not find something in the documentation
For the record, I am using R 3.2.2 and astsa V1.6. Any help would be greatly appreciated.
Upvotes: 2
Views: 707
Reputation: 91
I know I'm a little late but if you set the parameter Model = FALSE, no plot will be made.
E.g.
myModel = astsa::sarima(xdata = iris[,1], p = 1, d = 0, q = 0, xreg =
iris[, 2:4], details = FALSE, Model = FALSE)
Upvotes: 1