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 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!

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.

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