ARMA11 | R Documentation |
Sets up the necessary backend for the ARMA(1,1) process.
ARMA11(phi = NULL, theta = NULL, sigma2 = 1)
phi |
A |
theta |
A |
sigma2 |
A |
A variance is required since the model generation statements utilize randomization functions expecting a variance instead of a standard deviation like R.
An S3 object with called ts.model with the following structure:
AR1, MA1, SIGMA2
phi, theta, sigma^2
Number of Parameters: 3
Depth of Parameters e.g. list(c(1,1,1))
Guess Starting values? TRUE
or FALSE
(e.g. specified value)
JJB
# Creates an ARMA(1,1) process with predefined coefficients. ARMA11(phi = .23, theta = .1, sigma2 = 1) # Creates an ARMA(1,1) process with values to be guessed on callibration. ARMA11()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.