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!
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!
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.