itseregressio
Itseregressio is a statistical modeling technique used to predict future values of a time series based on its past values. In essence, it's a regression where the dependent variable is a value of the time series itself, and the independent variables are previous values of that same time series. The "self" in "itseregressio" refers to this relationship of the variable with itself over time.
The most basic form is an autoregressive model of order 1, denoted as AR(1). This model states
Higher-order autoregressive models, AR(p), include more past values as predictors, such as Yt = c + φ1Yt-1 + φ2Yt-2
Itseregressio models are a fundamental component of more complex time series analysis frameworks, such as ARIMA