Page 1 of 1

Bugs with mixed graphs in panel

Posted: Tue Feb 02, 2016 3:05 am
by mamo
Dear Eviews team,

Using Eviews 9.1 November 2015 build

I have found some bugs with the mixed graph-type in panels

Define a panel

Code: Select all

wfcreate a 2000 2010 4 series x = nrnd series y = nrnd series z=x+y group gr z x y
The code line

Code: Select all

gr.mixed(panel=i) line(1) stackedbar(2,3)
gives rise to the error message
No data values found in "DO_ GR.MIXED(PANEL=I) LINE(1) STACKEDBAR(2,3)"
The "mixed"-view without the "panel=i" option works as expected, though.

While "mixed" is supposed to be not only a group-view but also a graph-command, the following code line

Code: Select all

graph gra.mixed line(z) stackedbar(x,y)
yields the error message
LINE is not defined in "GRAPH GRA.MIXED LINE(Z) STACKEDBAR(X,Y)"


Best, mamo

Re: Bugs with mixed graphs in panel

Posted: Tue Feb 02, 2016 2:27 pm
by EViews Jason
Part 1: will be fixed in the next patch.

Part 2: For mixed graphs you have to create the group first and then create the mixed graph after. You cannot do both in one line like that of line and bar graphs

Code: Select all

group gr z x y freeze(gra) gr.mixed(panel=i) line(1) stackedbar(2,3)

Re: Bugs with mixed graphs in panel

Posted: Wed Feb 03, 2016 2:22 am
by mamo
Part 2: For mixed graphs you have to create the group first and then create the mixed graph after. You cannot do both in one line like that of line and bar graphs
Would be great to have "agraph.mixed" (like, for instance, "agraph.bar") in future releases of EViews, as has been requested by others in previous posts.
Best, mamo