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!
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
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.