arimasim {paramsim}R Documentation

Parameterized Simulation

Description

Parameterized Simulation

Usage

arimasim(
  a,
  z,
  n,
  ar11,
  ma11,
  ar22,
  ma22,
  ar33,
  ma33,
  p,
  d,
  q,
  sd = sd,
  j1,
  k1,
  j2,
  k2,
  j3,
  k3,
  arr1,
  maa1,
  arr2,
  maa2,
  arr3,
  maa3
)

Arguments

a

first seed boundary

z

last seed boundary

n

number of samples

ar11

character to search for in third coefficient of autoregressive

ma11

character to search for in third coefficient of autoregressive

ar22

character to search for in third coefficient of autoregressive

ma22

character to search for in third coefficient of autoregressive

ar33

character to search for in third coefficient of autoregressive

ma33

character to search for in third coefficient of autoregressive

p

order of the autoregressive

d

degree of difference

q

degree of moving average

sd

standard deviation of the series

j1

length of character to search for in first coefficient of autoregressive

k1

length of character to search for in third coefficient of autoregressive

j2

length of character to search for in second coefficient of autoregressive

k2

length of character to search for in third coefficient of autoregressive

j3

length of character to search for in third coefficient of autoregressive

k3

length of character to search for in third coefficient of autoregressive

arr1

character to search for in first coefficient of autoregressive

maa1

character to search for in third coefficient of autoregressive

arr2

character to search for in second coefficient of autoregressive

maa2

character to search for in third coefficient of autoregressive

arr3

character to search for in third coefficient of autoregressive

maa3

character to search for in third coefficient of autoregressive

Value

A data frame get printed to the console with its first colomn being the rank and the next few column could be the coefficients of AR or MA both with varying orders depending on the order and classes of ARIMA model being searched for. The last column of the data frame could be the intercept if any exist within the range of the search.

Functions

Examples

  arimasim(a= 289805,z= 289806,n= 10,p= 1,d= 0,q= 0,ar11= 0.8,sd = 1,j1= 4,arr1= "0.80")


[Package paramsim version 0.1.0 Index]