Graph of forecast errors
-
bizi_rats_10
- Posts: 10
- Joined: Sun Jul 18, 2010 3:47 pm
Graph of forecast errors
Hi all,
I am having problem producing graphs that compares errors between the original series and the forecasts series. Can any one help me to figure this out?
See attachments for data and code.
Regards,
JC
I am having problem producing graphs that compares errors between the original series and the forecasts series. Can any one help me to figure this out?
See attachments for data and code.
Regards,
JC
- Attachments
-
- Forecast_Univar_VAR_Errors.txt
- code
- (2.54 KiB) Downloaded 1164 times
-
- Data1.txt
- data
- (4.06 KiB) Downloaded 1160 times
Re: Graph of forecast errors
You might want to read up on the use of VECTORS of SERIES, as we really strongly discourage use of "numbered" series. The problem you're running into is that you're running off the end of the block for the numbered series (your ALLOCATE ended in 2010:9:7, but your last forecast works with 2010:9:14) which breaks the correspondence between %X and the series. It looks as if changing this line:
allocate 100 2010:9:14
will make the program work.
allocate 100 2010:9:14
will make the program work.
-
bizi_rats_10
- Posts: 10
- Joined: Sun Jul 18, 2010 3:47 pm
Re: Graph of forecast errors
thanks so much for your clarification.
JC
JC