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
sorry forgot to attach the graph. see attached
Give the variables labels.
Label PF = ‘Physical Function’;
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.
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.