InterviewSolution
| 1. |
What is auto-correlation and partial auto-correlation? |
|
Answer» Autocorrelation and partial autocorrelation are a type of measures of association between current time series and past time series values. Both of these provide an indication that older time series values are more useful in predicting future values. Autocorrelation is the correlation of a Time Series with lags of itself. This is a significant metric because:
While comparing current time series steps to that of prior time series steps, there can be direct and indirect correlations. The indirect correlations are a linear function of correlation of the observation. There could be INTERVENING time series steps. PACF or Partial autocorrelation tries to remove the EFFECT of correlation due to shorter lags. Both ACF and PACF are useful while trying to understand which model approach could be a RELEVANT and better fit for a prediction solution. |
|