# NOT RUN {
# Calculate the Autocorrelation
m = auto_corr(datasets::AirPassengers)
# Plot with 95% CI
plot(m)
# Plot with 90% CI
plot(m, alpha = 0.1)
# Plot without 95% CI
plot(m, show.ci = FALSE)
# More customized CI
plot(m, xlab = "my xlab", ylab = "my ylab", show.ci = TRUE,
alpha = NULL, col_ci = "grey", transparency = 0.5, main = "my main")
# }
Run the code above in your browser using DataLab