Auto-regressive models are models used in time series datasets that predict future values based on past values. They are based on an implicit assumption that the future will resemble the past. Therefore, the choice to use auto-regressive models is made when there is a correlation between the time series values and previous and subsequent values.
Auto-Regressive models can be used to predict future values across a number of use cases, including:
Auto-regressive models operate on the principle that the value of a variable at a given time can be predicted as a linear combination of its previous values. The auto-regressive model indicator will predict the current value based on its past value. Autoregressive models are commonly denoted as AR(p), where ‘p’ is the order of the model, indicating how many previous data points are considered to make a prediction.
Time series datasets are data points collected or recorded at successive time intervals. The data collected can range from microseconds in high-frequency trading data to years in climate change data. The essence of time series data is the information embedded in the sequence of values. This can help identify trends, patterns, and anomalies over time. For instance, in finance, analyzing stock market time series data helps in forecasting prices by studying past fluctuations.