|
Chapter Contents |
Previous |
Next |
| QQPLOT Statement |
The syntax for the QQPLOT statement is as follows:
proc capability data=measures;
var length width;
qqplot;
run;
proc capability data=measures;
qqplot length width;
run;
In the
following example, the NORMAL option requests a normal
Q-Q plot for each variable. The MU= and SIGMA=
normal-options request a distribution reference line with
intercept 10 and slope 0.3 for each plot, corresponding
to a normal distribution with mean
and standard
deviation
.The SQUARE option displays the plot in a square frame,
and the CTEXT= option specifies the text color.
proc capability data=measures;
qqplot 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.