BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Melk
Lapis Lazuli | Level 10

I have some data I am creating vbars for as such:

 

Y             TIME             GROUP           GENDER

1.1              0                    A                      F

1.5              1                    A                      F

1.3              0                    B                      F

1.4              1                    B                      F

1.5              0                    A                      M

1.7              1                    A                      M

 

 

There are no males in group b, but when I run the below code, I get a blank area for group B under the male panel. There was actually never supposed to be males in group b, so I dont want this to display at all. I just want one panel that is for females that displays groups a and b, and then one panel for males that only displays group A. Any way to do this?

 

proc sgpanel data=x;
     panelby gender / novarname;
     vbar group / response=y group=time  groupdisplay=cluster stat=mean;
run;

1 ACCEPTED SOLUTION

Accepted Solutions
JeffMeyers
Barite | Level 11

Hello,

   Try adding UNISCALE=ROW to your panelby statement.

 

  ods graphics / reset;
proc sgpanel data=x;
     panelby gender / novarname uniscale=row;
     vbar group / response=y group=time  groupdisplay=cluster stat=mean;
run;

SGPanel.png

View solution in original post

3 REPLIES 3
JeffMeyers
Barite | Level 11

Hello,

   Try adding UNISCALE=ROW to your panelby statement.

 

  ods graphics / reset;
proc sgpanel data=x;
     panelby gender / novarname uniscale=row;
     vbar group / response=y group=time  groupdisplay=cluster stat=mean;
run;

SGPanel.png

Melk
Lapis Lazuli | Level 10

This is great. Is there any way to get the vertical bars to be the same size for all?

Jay54
Meteorite | Level 14

Add proportional option to panelby statement:

  PANELBY var / PROPORTIONAL;

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

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

View all other training opportunities.

Discussion stats
  • 3 replies
  • 1430 views
  • 3 likes
  • 3 in conversation