autoplot.spec {ggfortify} | R Documentation |
Autoplot stats::spec
Description
Autoplot stats::spec
Usage
## S3 method for class 'spec'
autoplot(
object,
xlim = c(NA, NA),
ylim = c(NA, NA),
log = "y",
main = NULL,
xlab = NULL,
ylab = NULL,
asp = NULL,
...
)
Arguments
object |
|
xlim |
limits for x axis |
ylim |
limits for y axis |
log |
which variables to log transform ("x", "y", or "xy") |
main |
character vector or expression for plot title |
xlab |
character vector or expression for x axis label |
ylab |
character vector or expression for y axis label |
asp |
the y/x aspect ratio |
... |
other arguments passed to methods |
Value
ggplot
Examples
## Not run:
autoplot(stats::spec.ar(AirPassengers))
autoplot(stats::spec.pgram(AirPassengers))
## End(Not run)
[Package ggfortify version 0.4.17 Index]