BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
ANLYNG
Pyrite | Level 9

Hi,

I am stuck on this problem. I want to make a stacked plot with is grouped (name A and Name B). But it seems to double the

headers on the x-axis(show emty header B on A and opposite). Please see the attachment (the left most part and the right most part). I os only the headers and not the values. How can I show only the headers with vbars? and not headers from B on A and not headers A on B.

 

Hope ypu have some ideas.

 

here is my code:

 

proc sgpanel data=plot;

;

styleattrs datacolors=(red green blue);

panelby Name;

 

vbar group_var_sort / response=measure group=_NAME_ barwidth=1

           dataskin=pressed baselineattrs=(thickness=0) datalabel seglabel;

colaxis display=(nolabel noticks) valueattrs=(size=7);

rowaxis label='Pct' values=(0 to 60 by 10) grid;

run;

1 ACCEPTED SOLUTION

Accepted Solutions
PGStats
Opal | Level 21

The axis value label duplication could be caused by the format associated with variable group_var_sort. Add the statement

 

format group_var_sort $6.;

 

to the sgpanel procedure and see what happens. 

PG

View solution in original post

2 REPLIES 2
PGStats
Opal | Level 21

The axis value label duplication could be caused by the format associated with variable group_var_sort. Add the statement

 

format group_var_sort $6.;

 

to the sgpanel procedure and see what happens. 

PG
ANLYNG
Pyrite | Level 9

yes-you are right-they need to be exact the same-thanks.

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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
  • 2 replies
  • 1068 views
  • 0 likes
  • 2 in conversation