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

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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