I have the following time series data:
x <- ts(c(-3151, -873, 135, 825, 1531, -1420, -282,
2113, -916, -2222, -4654, -604, -1322,
-15457, 13835, 446, 1402, -1230, 1790, 1374, 1463))
By default the autocorrelation function plots lines at 95% confidence:
acf(x)
(see blue dashed lines in the picture below)
Is there a way to pass in 90% confidence levels to this plot instead of the default 95% levels? For instance, this does not work
acf(x, level=90)