BookmarkSubscribeRSS Feed
xxformat_com
Barite | Level 11

Is there a way to modify the tip i.e.

  1. to remove the equal sign when the label is empty?
  2. to remove the statistics (here freq)
  3. to change the label before the equal sign of the statistics (here Frequency)

 

proc format;
    value yr 12='12 Years Old'
             13='13 Years Old'
             14='14 Years Old'
             15='15 Years Old'
             16='16 Years Old';
             
    value $gender 'M'='Male'
                  'F'='Female';
run;


ods graphics / width=15cm height=10cm noborder imagemap=on;

proc sgplot data=sashelp.class noborder;
    hbar sex / group=age 
               seglabel
                  
               tip=(age sex)
               tipformat=(yr. $gender.)
               tiplabel=(auto 'Gender')
                  ; 
                  
	xaxis label='Freq';
    yaxis label='Gender';
    format sex $gender.;
run;


ods graphics off;

tip.JPG

2 REPLIES 2
GraphGuy
Meteorite | Level 14

At this time (SAS release 9.4m6), I don't think it is possible to control any of those 3 things you mentioned.

 

 

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 1806 views
  • 0 likes
  • 3 in conversation