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

SAS 9.4 "proc npar1way wilcoxon" can automatically generate a boxplot, for example following dataset and procedure is applied. 

 

proc npar1way data=sashelp.class wilcoxon;

class sex;

var height;

run;

 

A boxplot will be created after running the programm, If want to remove the p value in the boxplot graph (at the below right corner, please see the attached figure), how can I do that (suppressing the p value to be displayed)? Thank you!

 


fig.jpg
1 ACCEPTED SOLUTION

Accepted Solutions
WarrenKuhfeld
Ammonite | Level 13

 

This will remove the statistics box.

 

proc npar1way data=sashelp.class wilcoxon plots=wilcoxon(nostats);
class sex;
var height;
run;

View solution in original post

2 REPLIES 2
WarrenKuhfeld
Ammonite | Level 13

 

This will remove the statistics box.

 

proc npar1way data=sashelp.class wilcoxon plots=wilcoxon(nostats);
class sex;
var height;
run;

Visiting
Obsidian | Level 7

It works! Thank you so much!

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

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
  • 1872 views
  • 1 like
  • 2 in conversation