Hi,
How do I generate a Vbar3d for the 3 groups, as show below:
Group | Year | TOTAL |
A | 2012 | 9 |
A | 2013 | 22 |
A | 2014 | 32 |
A | 2015 | 4 |
B | 2012 | 1 |
B | 2013 | 14 |
B | 2014 | 8 |
B | 2015 | 2 |
C | 2012 | 3 |
C | 2013 | 22 |
C | 2014 | 10 |
C | 2015 | 4 |
Any help will be very appreciate.
Thanks,
The documentation is fairly straightforward for this one:
SAS/GRAPH(R) 9.2: Reference, Second Edition
proc gchart data=have;
vbar3d Year / sumvar=Total subgroup=Group inside=subpct
outside=sum
width=9
space=4
cframe=gray
;
run;
quit;
The documentation is fairly straightforward for this one:
SAS/GRAPH(R) 9.2: Reference, Second Edition
proc gchart data=have;
vbar3d Year / sumvar=Total subgroup=Group inside=subpct
outside=sum
width=9
space=4
cframe=gray
;
run;
quit;
Thanks, Reeza.
It work!
Don’t miss the livestream kicking off May 7. It’s free. It’s easy. And it’s the best seat in the house.
Join us virtually with our complimentary SAS Innovate Digital Pass. Watch live or on-demand in multiple languages, with translations available to help you get the most out of every session.
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.