stats::acf
to data.frame
Convert stats::acf
to data.frame
# S3 method for acf
fortify(
model,
data = NULL,
conf.int = TRUE,
conf.int.value = 0.95,
conf.int.type = "white",
...
)
data.frame
stats::acf
instance
original dataset, if needed
Logical flag indicating whether to attach confidence intervals
Coverage probability for confidence interval
Type of confidence interval, 'white' for white noise or 'ma' MA(k-1) model
other arguments passed to methods
if (FALSE) {
fortify(stats::acf(AirPassengers))
fortify(stats::pacf(AirPassengers))
fortify(stats::ccf(AirPassengers, AirPassengers))
fortify(stats::acf(AirPassengers), conf.int = TRUE)
}
Run the code above in your browser using DataLab