plot.arrob: Diagnostic Plots for a Fitted Autoregressive Model

Description Usage Arguments Details Author(s) See Also Examples

Description

Diagnostic plots for objects of class "arrob" as it is returned by a call to the function arrob.

Usage

1
2
## S3 method for class 'arrob'
plot(x, ask = TRUE, ci = 0.95, ...)

Arguments

x

an object of class "arrob". Usually the result of a call to arrob.

ask

logical value. If TRUE (and the R session is interactive) the user is asked for input, before a new figure is drawn (see devAskNewPage).

ci

coverage probability for confidence intervals in some of the plots. Plotting of the confidence interval is suppressed if ci is zero or negative.

...

further arguments are currently ignored. Only for compatibility with generic function.

Details

Produces the following plots:

Author(s)

Alexander Dürre and Tobias Liboschik

See Also

arrob for robust fitting of AR models, ar for classical fitting.

Other S3 methods residuals.arrob, fitted.arrob, filtered.arrob and predict.arrob for objects of class "arrob".

Examples

1
2
3
4
set.seed(1066)
tss <- arima.sim(model = list(ar = 0.3, ma = 0.5), n = 100)
fit <- arrob(tss, method = "yw")
plot(fit)

robts documentation built on May 2, 2019, 4:55 p.m.