Page 1 of 1

group.mixed: allow for place holders and other shortcuts

Posted: Fri Sep 25, 2020 1:17 am
by mamo
Dear Eviews team,

this suggestion for future updates of EVEIWS is to allow for placeholders and shortcuts in the generation of mixed graphs via the group.mixed command, such as:

Represent all series in the group as stacked bars except the fourth series which should be represented as a line

Code: Select all

mygroup.mixed stackedbar(*) line(4)
Represent series 1,2, and 3 in the group as stacked bars, and the fourth series as a line

Code: Select all

mygroup.mixed stackedbar(1-3) line(4)
Represent series 1,2,3, and 5 in the group as stacked bars, and the fourth series as a line

Code: Select all

mygroup.mixed stackedbar(1-3,5) line(4)
Represent all series except series x in the group as stacked bars, and represent the series x as a line

Code: Select all

mygroup.mixed stackedbar(*) line(x)