Sample Data
x=7:15 z=1 y=2
x=7:15 z=2 y=1
x=7:15 z=3 y=4
x=7:45 z=1 y=3
x=7:45 z=2 y=4
x=7:45 z=8 y=2
...
then:
Proc GPlot;
plot y*x=z / vaxis=axis1 legend=legend1 noframe;
run; quit;
No questions about the proc gplot, it works fine and plots the y vs. timevalue x for each value of z. I tried to produce the same with a stacked proc gchart, but could not produce
anything readable:
Proc GChart;
vbar y / discrete group=x subgroup=z; * tried variations ;
run; quit;
The goal was to see z volume of y against the timevalue x.