BookmarkSubscribeRSS Feed
mariko5797
Pyrite | Level 9

As the title suggests, I want the text of the y-axis to wrap around. It's currently named based off the label given in the dataset. When I run PROC SGPLOT on all BMI groups, there isn't an issue. But with PROC SGPANEL, the label isn't being wrapped. How can I fix this?

proc sgpanel data = work;
 panelby BMIGRP / layout = panel columns = 3 spacing = 10 novarname;
 scatter x = INF y = ADJDV / group = BMIGRP;
 refline 0.5 1 1.5 / axis = x lineattrs = (pattern = dash);
 keylegend / title = "BMI Group" noborder;
run;
2 REPLIES 2
ballardw
Super User

Can you provide more details , maybe as an image, of what you mean by "wrap around Y-axis".

The only thing I think of with that phrase doesn't make any sense so obviously I am missing something.

 

Better would be to actually provide example data in the form of a data step OR use your Sgpanel code with one of the SAS supplied data sets.

 

The ROWAXIS statement normally is where to start with Y axis appearance in Sgpanel.

djrisks
Barite | Level 11

Hi @mariko5797,

 

You can use the ROWAXIS statement and the LABEL option to explicitly create your own Y-Axis label. You can also use the SPLITCHAR option if you want to have your axis label go on multiple lines.

SAS Innovate 2025: Register Now

Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
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.

SAS Training: Just a Click Away

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

Browse our catalog!

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