BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
ghosh
Barite | Level 11
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

Capture.JPG

 

1 ACCEPTED SOLUTION

Accepted Solutions
DanH_sas
SAS Super FREQ

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.

View solution in original post

2 REPLIES 2
DanH_sas
SAS Super FREQ

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.

ghosh
Barite | Level 11

Hi Dan,

 

Thank you so much.  Works perfectly!

 

Regards

Aroop 

SAS INNOVATE 2024

Innovate_SAS_Blue.png

Registration is open! SAS is returning to Vegas for an AI and analytics experience like no other! Whether you're an executive, manager, end user or SAS partner, SAS Innovate is designed for everyone on your team. Register for just $495 by 12/31/2023.

If you are interested in speaking, there is still time to submit a session idea. More details are posted on the website. 

Register now!

How to Concatenate Values

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.

Get the $99 certification deal.jpg

 

 

Back in the Classroom!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 2 replies
  • 662 views
  • 1 like
  • 2 in conversation