plot.dbacf {dbacf} | R Documentation |
Plot autocovariance and autocorrelation functions
Description
This function returns the plot method for objects of class "dbacf".
Usage
## S3 method for class 'dbacf'
plot(
x,
type = "h",
xlab = "Lag",
ylab = paste("ACF", ifelse(x$acfType == "covariance", "(cov)", " ")),
xlim = c(0, x$m + 1),
main = paste("Series", x$series),
ltyZeroLine = 3,
colZeroLine = "blue",
...
)
Arguments
x |
an object of class "dbacf". |
type |
what type of plot should be drawn. For possible types see
|
xlab |
the x label of the plot. |
ylab |
the y label of the plot. |
xlim |
numeric vector of length 2 giving the |
main |
an overall title for the plot. |
ltyZeroLine |
type of line used to draw horizontal line passing at 0. |
colZeroLine |
string indicating color of horizontal line passing at 0. |
... |
extra arguments to be passed to plot. |
Value
No return value
Note
dbacf
documents the structure of objects of class "dbacf".
See Also
[Package dbacf version 0.2.8 Index]