BookmarkSubscribeRSS Feed
Aman4SAS
Obsidian | Level 7

Hi ,

 

I am trying to use proc X11 to forecast my sales. 

But i am facing a problem that there is a negative value in my time series(due to return on that particular month).

please suggest me if there is any solution in proc x11 to handle this situation or do i need to handle it other way arround?

 

Thanks in advance.

4 REPLIES 4
pearsoninst
Pyrite | Level 9
You can use MODE=PSEUDOADD if you have - values.Or if you adjust that units ..My Knowledge Ends here ..
Aman4SAS
Obsidian | Level 7

can u please help me where can i put this option?

my syntax is :

proc x11 data= test yraheadout;

monthly date=month;

var=sales;

table d11;

output out =test1 b1=a d10=b d11=c;

run;

Aman4SAS
Obsidian | Level 7
can u please help me where can i put this option?
my syntax is :
proc x11 data= test yraheadout;
monthly date=month;
var=sales;
table d11;
output out =test1 b1=a d10=b d11=c;
run;
udo_sas
SAS Employee

Hello -

Have a look at the X12 (or X13 in SAS/ETS 14.1) procedure instead.

The MODE= option is supported in the X11 statement of these procedures.

Thanks,

Udo