Page 1 of 1

Graphing multiple scenarios

Posted: Wed Sep 11, 2013 12:10 am
by Karl1
I have made several scenarios, with aliases PS1...PS8, that I wish to plot together in one figure per variable. When I try the commands below, Eviews only uses my last scenario (alias "PS8"), so I get only 2 graphs (baseline and PS8) per figure. How do I get a graph for all the scenarios in each of the figures?

Code: Select all

group gr1 ABC ABD !n1 = gr1.@count for !ii=1 to !n1 %str1 = gr1.@seriesname(!ii) MOD_2SLS.MAKEGRAPH( c, S=m, G=v) GRAPH_{%str1} {%str1} next
I have tried with the aliases behind {%str1}, but that didn't work.

Re: Graphing multiple scenarios

Posted: Wed Sep 11, 2013 11:29 am
by EViews Gareth
You cannot use the model.makegraph command to view more than one scenario (along with baseline).

You'll have to make the graphs manually by grouping the series together and then making a graph from the groups.

Re: Graphing multiple scenarios

Posted: Thu Sep 12, 2013 3:28 am
by Karl1
Ok. Thanks! I'll work around it.