powered by
This is the time series implementation of lookout.
lookout_ts(x, alpha = 0.05)
A lookout object.
The input univariate time series.
The level of significance. Default is 0.05.
0.05
lookout
set.seed(1) x <- arima.sim(list(order = c(1,1,0), ar = 0.8), n = 200) x[50] <- x[50] + 10 plot(x) lo <- lookout_ts(x) lo
Run the code above in your browser using DataLab