sarima.random | R Documentation |
Simulate Seasonal ARIMA
sarima.random(model, length, stde = 1, tdegree = 0)
model |
a |
length |
length of the output series. |
stde |
the standard deviation of the normal distribution of the innovations of the simulated series. Unused if tdegree is larger than 0. |
tdegree |
Degrees of freedom of the T distribution of the innovations. O if normal distribution is used. |
# Airline model s_model <- sarima.model(period = 12, d =1, bd = 1, theta = 0.2, btheta = 0.2) x <- sarima.random(s_model, length = 64) plot(x, type = "line")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.