BookmarkSubscribeRSS Feed
☑ This topic is solved. Need further help from the community? Please sign in and ask a new question.
RichardDeVen
Barite | Level 11

Consider this sample

 

data plotdata(keep=group id subgroup metric);
  do group = 'A', 'B';
    do subgroup = 2, 4, 6, 8;
      do _n_ = 1 to 15;
        id = (group='B') * 100 + _n_;
        metric = rand('integer', 25, 50);
        output;
      end;      
    end;
  end;
run;

proc sgpanel data=plotdata;
  panelby group;
  vbox metric / group = subgroup;
  colaxis label='Subgroup' grid;
run;

ods html close;

RichardADeVenezia_0-1661954595022.png

What is wanted is a plot showing the same boxes, but each group panel showing a colaxis with the subgroup values (2,4,6,8) as tic marks and the boxes above the marks.

 

I would turn off the legend with SGPANEL option NOAUTOLEGEND

 

1 ACCEPTED SOLUTION

Accepted Solutions
DanH_sas
SAS Super FREQ

After adding the CATEGORY option, you might also want to add the NOAUTOLEGEND option to the SGPANEL procedure statement. That way, the legend is suppressed. It does not add anything to the graph once you display the tick marks.

proc sgpanel data=plotdata noautolegend;
  panelby group;
  vbox metric / group = subgroup category = subgroup;
  colaxis label='Subgroup' grid;
run;

View solution in original post

2 REPLIES 2
DanH_sas
SAS Super FREQ

Just add CATEGORY=subgroup to your VBOX statement:

vbox metric / group = subgroup category = subgroup;
DanH_sas
SAS Super FREQ

After adding the CATEGORY option, you might also want to add the NOAUTOLEGEND option to the SGPANEL procedure statement. That way, the legend is suppressed. It does not add anything to the graph once you display the tick marks.

proc sgpanel data=plotdata noautolegend;
  panelby group;
  vbox metric / group = subgroup category = subgroup;
  colaxis label='Subgroup' grid;
run;

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
  • 258 views
  • 1 like
  • 2 in conversation