Hello, all
I am fitting a time series model(ARIMA) and I have about 100 variables to choose from. I have tried PROC VARCLUS to reduce this number to 40, but still it is too much. Is there a way I can further reduce this number?
I know PROC GLMSELECT could be one option; however, from what I know, PROC GLMSELECT only works for general linear model. It it suitable to use PROC GLMSELECT for time series model selection?
Thank you very much.
Hello, all
I am fitting a time series model(ARIMA) and I have about 100 variables to choose from. I have tried PROC VARCLUS to reduce this number to 40, but still it is too much. Is there a way I can further reduce this number?
I know PROC GLMSELECT could be one option; however, from what I know, PROC GLMSELECT only works for general linear model. It it suitable to use PROC GLMSELECT for time series model selection?
Thank you very much.
You can still use GLMSELECT for variable selection in time series. However, since it is time series data, you will need to include some time series related variables in the model to better capture the time series aspects of the data, e.g. seasonality, lags of dependent variables, differencing, seasonal differencing, etc.
Yes the suggestion was to formulate a GLM model with time series features such as lagged dependent variable and seasonal dummies (you can use the CLASS statement in GLM to create the dummies for you automatically). The model is not exactly the same as ARIMA but you can use this proxy model to select input variables, and then use the selected input variables in the subsequent time series models.
thanks
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
ANOVA, or Analysis Of Variance, is used to compare the averages or means of two or more populations to better understand how they differ. Watch this tutorial for more.
Find more tutorials on the SAS Users YouTube channel.