|
Chapter Contents |
Previous |
Next |
| PROBPLOT Statement |
The syntax for the PROBPLOT statement is as follows:
proc capability data=measures;
var length width;
probplot;
run;
proc capability data=measures;
probplot length width;
run;
In the
following example, the NORMAL option requests a normal
probability plot for each variable, while the
MU= and SIGMA= normal-options request a
distribution reference line corresponding to the normal
distribution with
and
.
The SQUARE option displays the plot in a square frame,
and the CTEXT= option specifies the text color.
proc capability data=measures;
probplot length1 length2 / normal(mu=10 sigma=0.3)
square
ctext=blue;
run;
|
Chapter Contents |
Previous |
Next |
Top |
Copyright © 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.