simuARX | R Documentation |
This function simulates an autoregresive X process.
simuARX(mdl_h0, burnin = 100)
mdl_h0 |
List containing the following DGP parameters
|
burnin |
Number of simulated observations to remove from beginning. Default is |
List with simulated autoregressive series and its DGP parameters.
set.seed(1234)
# Define DGP of AR process
mdl_ar <- list(n = 500,
mu = 5,
sigma = 2,
phi = c(0.5,0.2))
# Simulate process using simuAR() function
y_simu <- simuAR(mdl_ar)
plot(y_simu)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.