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

For the attached graph,

I want to change the Y-axis labels from the coding variable to reflect the full names.

For the Y-axis

minTC_ave-iqr = Minimum Toe Clearance (IQR)

maxTC1_ave_iqr=Maximum Toe Clearance (IQR)

 

Same thing for the X-Axis.

PF= Physical Function

VT= Vitality/Energy

GH= General Health

 

this is the code I used for the graph:

 

proc sgscatter data=mydata;
title "Spatial Gait Parameters vs. SF-36 Functional Scores";
compare x=(PF VT GH)
		y=(minTC_ave_iqr maxTC1_ave_iqr )
		/loess=(nogroup) group=group
		markerattrs=(symbol=CircleFilled size=14)
   filledoutlinedmarkers 
   colormodel=(CX3288BD CX99D594 CXE6F598 CXFEE08B CXFC8D59 CXD53E4F);
   format group group.;
   run; quit;

 How do I modify it so the final graph reflects the full names for the corresponding X and Y axis as indicated above

1 ACCEPTED SOLUTION

Accepted Solutions
Reeza
Super User

Give the variables labels. 

 

Label PF = ‘Physical Function’;

View solution in original post

2 REPLIES 2
kcodo
Obsidian | Level 7

sorry forgot to attach the graph. see attached

Reeza
Super User

Give the variables labels. 

 

Label PF = ‘Physical Function’;

sas-innovate-white.png

Missed SAS Innovate in Orlando?

Catch the best of SAS Innovate 2025 — anytime, anywhere. Stream powerful keynotes, real-world demos, and game-changing insights from the world’s leading data and AI minds.

 

Register now

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

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
  • 5964 views
  • 2 likes
  • 2 in conversation