Time-Series MLM Flashcards

1
Q

Time-series analysis

A

Time-series analysis comprises methods for analyzing time-series data to extract meaningful statistics and other characteristics. Time-series forecasting is the use of a model to predict future values based on previously observed values.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q
  1. Autoregressive Integrated Moving Average (ARIMA)
A

ARIMA models capture a suite of different standard temporal structures in time series data. It is specified by three order parameters (p, d, q), where ‘p’ is the order of the Autoregressive part; ‘d’ is the order of differencing required for stationarity; and ‘q’ is the order of the Moving Average part.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q
  1. Seasonal Autoregressive Integrated Moving-Average (SARIMA)
A

An extension of ARIMA that explicitly supports univariate time series data with a seasonal component. It adds three new hyperparameters to specify the autoregression (AR), differencing (I), and moving average (MA) for the seasonal component of the series, as well as an additional parameter for the period of the seasonality.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q
  1. Vector Autoregression (VAR)
A

An extension of AR models that allows for the simultaneous modeling of multiple, interrelated time series variables, all of which are treated as endogenous. The structure captures the linear interdependencies among the variables.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q
  1. Prophet
A

Developed by Facebook, Prophet is designed for analyzing time-series that display patterns on different time scales such as yearly, weekly and daily. It also has advanced capabilities for modeling the effects of holidays on a time-series.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q
  1. Exponential Smoothing (ETS)
A

ETS models, such as Holt’s linear exponential smoothing, capture trend and seasonality in time series data. The Triple Exponential Smoothing (Holt-Winters method) can handle both trends and seasonality.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q
  1. Recurrent Neural Networks (RNN)
A

RNNs, specifically Long Short-Term Memory (LSTM) networks, have been used with a lot of success for time-series forecasting. LSTMs are able to remember important events or patterns in the past data and can use this information to influence the output for the current step.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q
  1. Gated Recurrent Unit (GRU)
A

Similar to LSTMs, GRUs are another type of recurrent neural network that have seen use in time-series analysis. They also have gating units, but with a slightly different and less complex internal structure.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q
  1. State Space Models
A

State Space Models and the Kalman filter can handle multiple structural components such as trends and seasonality, as well as the errors, in a unified framework.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q
  1. Gaussian Processes
A

Gaussian Processes are used for regression tasks. They are flexible and fully specified by a mean and a covariance function, making them especially useful for modelling time series data.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly