Learn R Programming

tsgui (version 0.0.3)

ARMA.model: Definition of an ARMA model.

Description

ARMA.model defines an ARMA model as input for the argument user of tsgui

Usage

ARMA.model(p.max=3, q.max=3)

Arguments

p.max,q.max

non-negative integer. Any ARMA(p,q) model can be modelled in the gui with \(p \le\)p.max and \(q \le\)q.max. Note that p.max + q.max should not be larger than 6. Otherwise gui cannot manage the abundance of parameters.

Value

A list of parameters is returned.

See Also

tsgui, GARCH.model

Examples

Run this code
# NOT RUN {
  if (interactive())
    tsgui(user=list(AR=ARMA.model(p.max=5, q.max=0)),
          included.models = "ARMA")
# }

Run the code above in your browser using DataLab