I found different "W" options like "WLIMITS", "WTREND", etc.
But nothing for changing the width / thickness of lines generated with "VREF".
I can change the line type with "LVREF", but nothing about thickness...
A bit awkward, but this works...Suppose you want a reference line at 55. Add more lines just above and below 55, so you get the appearance of a thicker line.
proc shewhart data=sashelp.class;
irchart height * name / vref=55 54.8 54.9 55.1 55.2;
run;
Otherwise, for ODS Graphics there might be a style template modification that would do it.
So, you are asking about the thickness of vertical reference line. There is probably nothing original about proc shewhart in that respect. Try adding this option to vref statement: / axis=x lineattrs=(thickness=3 /*color=darkred pattern=dash*/);
A bit awkward, but this works...Suppose you want a reference line at 55. Add more lines just above and below 55, so you get the appearance of a thicker line.
proc shewhart data=sashelp.class;
irchart height * name / vref=55 54.8 54.9 55.1 55.2;
run;
Otherwise, for ODS Graphics there might be a style template modification that would do it.
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
ANOVA, or Analysis Of Variance, is used to compare the averages or means of two or more populations to better understand how they differ. Watch this tutorial for more.
Find more tutorials on the SAS Users YouTube channel.