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!
CFC_SAS_Communities_400x225.jpg
It's your turn to help shape SAS Innovate 2027. Share your expertise and inspire the SAS community.
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.