Solved – steps to time series analysis on the data

time series

I have 44 years of data for 4 variables: Y, X1, X2, X3.

All 4 variables are non-stationary.
I plan to run this model: Y= X1 + X2 + X3 + e.
I wonder what should I do next, steps by steps, to fit my model?

1.Should I first use log and/or difference on all the 4 variables to make them become stationary, and then run the model?

2.How to decide whether I should put 4 logs and/or difference on all the 4 variables? or on Y, X1, X2, or X3?

3.What time series methods should I use to fit my model? AR, MA, ARMA, ARIMA, ARMAV, Multivariate Time Series?

4.I am using SPSS. Answers about SPSS or not are all appreciated.

Thanks a lot.

Best Answer

The first thing to do is to determine what level of differencing is required for all of the series and then convert Y, X1, X2 and X3 to y,x1, x2 and x3. The second step is to determine the appropriate ARMA filter for each of these three series x1,x2 and x3. Develop pre-whitened cross-correlations see here https://onlinecourses.science.psu.edu/stat510/node/75 and then identify the appropriate transfer function between Y and X1,X2 AND X3. Add any necessary ARIMA structure and any needed indicators reflecting Pulses, Level Shifts , Seasonal Pulses and/or Time Trends that may be needed . Estimate the model and then delete non-significant structure. Re-examine residuals to possibly augment the model via diagnostic checking procedures.

SPSS is in my opinion ill-suited for your needs BUT you might call their help desk and ask for advice as more recent versions may have an automatic transfer function identification option available to you. Otherwise you might try googling terms like "automatic time series modelling" or "automatic intervention detection" etc ....just make sure that the suggested solutions are multi-variate and single equation

Logs or any other transforms such as weighted modelling should only be used when it is proven that the error variance is not homogenous across time. See When (and why) should you take the log of a distribution (of numbers)? for a good discussion on this topic. Transforms should never be done willy-nilly i.e. without cause.

Related Question