🔒 This topic is solved and locked.
Need further help from the community? Please
sign in and ask a new question.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Posted 04-07-2018 10:51 PM
(1675 views)
I would like to change order of the box plots to be:
control OA and LSS.
I am not sure why it is flipped the opposite way.
Also how do I override the automatic title.
looks like the code I put in for the title does not work. Appreciate all the help!
See attached graph.
here is the code I used:
proc format;
value group 0="control" 1="OA" 2= "LSS" ;
run;
proc glm data=my data; class group;
title "Gait Speed Symmetry Index Distribution";
model speed_SymIdx_iqr = group/effectsize alpha=0.05;
Format group group.;
LABEL speed_SymIdx_iqr='Gait Speed Symmetry Index';
run; quit;
1 ACCEPTED SOLUTION
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
4 REPLIES 4
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Try adding option order=internal to the proc glm statement.
PG
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
thank you. that worked to restore the order. do know how I could override the automatic title?
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
It's usually easier to make your own graph (getting the data from an OUTPUT statement) than to fiddle with the internal proc GLM GTL template to modify the graph.
PG
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
thanks.