BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Ujjawal
Quartz | Level 8

I am trying to calculate forecasted value using moving average. I am getting different result using PROC EXPAND and PROC ARIMA

 

 

Proc expand data= data1 out= new_mydata;
convert sales = sales_movave / transformout=(movave 3);
run;

proc arima data=WORK.DATA1 plots=none out=WORK.out0001;
	identify var=Sales;
	estimate p=(1 2 3) ar=(0.3333333333333333 0.3333333333333333 
		0.3333333333333333) noint method=ULS;
	forecast lead=12;
	run;
quit;

 

1 ACCEPTED SOLUTION

Accepted Solutions
alexchien
Pyrite | Level 9

1. proc expand computes the moving average (movave)  as sales_moave_t = (sales_t-2 + sales_t-1 + sales_t)/3. This is probably not you wanted.

2. proc arima gives you exactly what you are looking for but you need to add a few options to make it work. sales_moave_t = (sales_t-3 + sales_t-2 + sales_t-1)/3

 

the correct syntax should be

proc arima data=WORK.DATA1 plots=none out=WORK.out0001;
	identify var=Sales;
	estimate p=(1 2 3) ar=(0.3333333333333333 0.3333333333333333 
		0.3333333333333333) noint noest nostable method=CLS;
	forecast lead=12;
	run;
quit;

 

Without noest nostable, proc arima will use the provided ar values as the initial values and try to estimate them. Thus you might end up with something that's not equally weighted moving averages.

hope this helps

alex

View solution in original post

3 REPLIES 3
Reeza
Super User

@Ujjawal wrote:

I am trying to calculate forecasted value using moving average. I am getting different result using PROC EXPAND and PROC ARIMA

 

 

Proc expand data= data1 out= new_mydata;
convert sales = sales_movave / transformout=(movave 3);
run;

 


PROC EXPAND doesn't do forecasting.

Puwang
Obsidian | Level 7

In your PROC ARIMA statement, p= and ar= specifies AutoRegressive paramters. If you want to do moving average, you need to use q= and MA=. As follows:

proc arima data=WORK.DATA1 plots=none out=WORK.out0001;
	identify var=Sales;
	estimate Q=(1 2 3) MA=(0.3333333333333333 0.3333333333333333 
		0.3333333333333333) noint method=ULS;
	forecast lead=12;
	run;
quit;
alexchien
Pyrite | Level 9

1. proc expand computes the moving average (movave)  as sales_moave_t = (sales_t-2 + sales_t-1 + sales_t)/3. This is probably not you wanted.

2. proc arima gives you exactly what you are looking for but you need to add a few options to make it work. sales_moave_t = (sales_t-3 + sales_t-2 + sales_t-1)/3

 

the correct syntax should be

proc arima data=WORK.DATA1 plots=none out=WORK.out0001;
	identify var=Sales;
	estimate p=(1 2 3) ar=(0.3333333333333333 0.3333333333333333 
		0.3333333333333333) noint noest nostable method=CLS;
	forecast lead=12;
	run;
quit;

 

Without noest nostable, proc arima will use the provided ar values as the initial values and try to estimate them. Thus you might end up with something that's not equally weighted moving averages.

hope this helps

alex

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

Multiple Linear Regression in SAS

Learn how to run multiple linear regression models with and without interactions, presented by SAS user Alex Chaplin.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 3 replies
  • 2708 views
  • 2 likes
  • 4 in conversation