powered by
stats::acf
Autoplot stats::acf. Note to pass `plot = FALSE` to original function to suppress standard plot output
# S3 method for acf autoplot( object, colour = "#000000", linetype = "solid", conf.int = TRUE, conf.int.colour = "#0000FF", conf.int.linetype = "dashed", conf.int.fill = NULL, conf.int.alpha = 0.3, conf.int.value = 0.95, conf.int.type = "white", xlim = c(NA, NA), ylim = c(NA, NA), log = "", main = NULL, xlab = NULL, ylab = "ACF", asp = NULL, ... )
ggplot
stats::acf instance
Line colour
Line type
Logical flag indicating whether to plot confidence intervals
line colour for confidence intervals
line type for confidence intervals
fill colour for confidence intervals
alpha for confidence intervals
Coverage probability for confidence interval
Type of confidence interval, 'white' for white noise or 'ma' MA(k-1) model
limits for x axis
limits for y axis
which variables to log transform ("x", "y", or "xy")
character vector or expression for plot title
character vector or expression for x axis label
character vector or expression for y axis label
the y/x aspect ratio
other arguments passed to methods
if (FALSE) { autoplot(stats::acf(AirPassengers, plot = FALSE)) autoplot(stats::pacf(AirPassengers, plot = FALSE)) autoplot(stats::ccf(AirPassengers, AirPassengers, plot = FALSE)) }
Run the code above in your browser using DataLab