plot.Arima2 | R Documentation |
Arima2
objectThis function plots time series data loaded from an Arima2
object or plots
inverse roots of the AR or MA polynomials in a fitted ARIMA model on the
complex unit circle.
## S3 method for class 'Arima2'
plot(x, roots = TRUE, title = NULL, tick.lab = NULL, ...)
x |
An |
roots |
Would you instead prefer to plot the roots on a unit circle? Insert logical type here. |
title |
Title of plot |
tick.lab |
Time vector of numeric or character/string type. |
... |
Other parameters |
The output of this function is a ggplot
object, so layers may be added to
the output of this function using ggplot2
's plus operator.
Arima 2
plot, which is a ggplot2
object. Type of plot is
indicated through roots
parameter.
plot(arima(lh, order = c(1,0,1)))
plot(x = arima(lh, order = c(3,0,1)), roots = FALSE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.