ods graphics on / reset=all;
ods graphics on / width=4in;
proc sgpanel data=sashelp.class;
panelby sex / noheader noborder skipemptycells;
vbar age / response=height group=sex;
run;I am creating a graph similar to example from the documentation "SAS® 9.4 ODS Graphics: Procedures Guide, Sixth Edition". I have only added the skipemptycells option.
I would like to suppress missing bars (female age 16) , however, the skipemptycells option does not suppress it. In my own example I am using year and quarter as the panelby and vbar variables respectively.
Would appreciate a solution.
Thanks
You will want to add two options to your PANELBY statement:
1. UNISCALE=ROW - this tells SGPANEL to make only the ROW axes uniform, allowing the missing "16" to go away from the first cell on the COLUMN axis.
2. PROPORTIONAL - this option tells SGPANEL to adjust the cell widths so that the bars have the same width, even when there are not the same number of categories in each cell.
Hope this helps!
Dan.
You will want to add two options to your PANELBY statement:
1. UNISCALE=ROW - this tells SGPANEL to make only the ROW axes uniform, allowing the missing "16" to go away from the first cell on the COLUMN axis.
2. PROPORTIONAL - this option tells SGPANEL to adjust the cell widths so that the bars have the same width, even when there are not the same number of categories in each cell.
Hope this helps!
Dan.
Hi Dan,
Thank you so much. Works perfectly!
Regards
Aroop
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.