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!
This will remove the statistics box.
proc npar1way data=sashelp.class wilcoxon plots=wilcoxon(nostats);
class sex;
var height;
run;
This will remove the statistics box.
proc npar1way data=sashelp.class wilcoxon plots=wilcoxon(nostats);
class sex;
var height;
run;
It works! Thank you so much!
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and save with the early bird rate—just $795!
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.
Ready to level-up your skills? Choose your own adventure.