You can use the PROBPLOT statement to request probability plots based on the theoretical distributions summarized in Table 5.62.
Table 5.62: Distributions and Parameters
Parameters |
||||||
---|---|---|---|---|---|---|
Distribution |
Density Function |
Range |
Location |
Scale |
Shape |
|
Beta |
|
|
|
|
, |
|
Exponential |
|
|
|
|
||
Gamma |
|
|
|
|
|
|
Gumbel |
|
all x |
|
|
||
Lognormal |
|
|
|
|
|
|
(3-parameter) |
||||||
Normal |
|
all x |
|
|
||
Generalized |
|
|
|
|
|
|
Pareto |
|
|
||||
Power Function |
|
|
|
|
|
|
Rayleigh |
|
|
|
|
||
Weibull |
|
|
|
|
c |
|
(3-parameter) |
||||||
Weibull |
|
|
|
|
c |
|
(2-parameter) |
(known) |
You can request these distributions with the BETA , EXPONENTIAL , GAMMA , LOGNORMAL , NORMAL , WEIBULL , and WEIBULL2 options, respectively. If you do not specify a distribution option, a normal probability plot is created.
Some of the distribution options in the PROBPLOT statement require you to specify one or two shape parameters in parentheses after the distribution keyword. These are summarized in Table 5.63.
Table 5.63: Shape Parameter Options for the PROBPLOT Statement
Distribution Keyword |
Mandatory Shape Parameter Option |
Range |
---|---|---|
BETA |
ALPHA=, BETA= |
, |
EXPONENTIAL |
None |
|
GAMMA |
ALPHA= |
|
GUMBEL |
None |
|
LOGNORMAL |
SIGMA= |
|
NORMAL |
None |
|
PARETO |
ALPHA= |
|
POWER |
ALPHA= |
|
RAYLEIGH |
None |
|
WEIBULL |
C=c |
c > 0 |
WEIBULL2 |
None |
You can visually estimate the value of a shape parameter by specifying a list of values for the shape parameter option. The PROBPLOT statement produces a separate plot for each value. You can then use the value of the shape parameter producing the most nearly linear point pattern. Alternatively, you can request that the plot be created using an estimated shape parameter. For an example, see Creating Lognormal Probability Plots.
If you specify the location and scale parameters for a distribution (or if you request estimates for these parameters), a diagonal distribution reference line is displayed on the plot. (An exception is the two-parameter Weibull distribution, for which a line is displayed when you specify or estimate the scale and shape parameters.) Agreement between this line and the point pattern indicates that the distribution with these parameters is a good fit. For illustrations, see Example 5.19 and Example 5.20.
The following table shows how the specified parameters determine the intercept[11] and slope of the line:
Table 5.64: Intercept and Slope of Distribution Reference Line
Parameters |
Linear Pattern |
||||
---|---|---|---|---|---|
Distribution |
Location |
Scale |
Shape |
Intercept |
Slope |
Beta |
|
|
, |
|
|
Exponential |
|
|
|
|
|
Gamma |
|
|
|
|
|
Gumbel |
|
|
|
|
|
Lognormal |
|
|
|
|
|
Normal |
|
|
|
|
|
Generalized Pareto |
|
|
|
|
|
Power Function |
|
|
|
|
|
Rayleigh |
|
|
|
|
|
Weibull (3-parameter) |
|
|
c |
|
|
Weibull (2-parameter) |
(known) |
|
c |
|
|
For the LOGNORMAL and WEIBULL2 options, you can specify the slope directly with the SLOPE= option. That is, for the LOGNORMAL option, specifying THETA= and SLOPE= displays the same line as specifying THETA= and ZETA=. For the WEIBULL2 option, specifying SIGMA= and SLOPE= displays the same line as specifying SIGMA= and C=.
[11] The intercept and slope are based on the quantile scale for the horizontal axis, which is displayed on a Q-Q plot; see QQPLOT Statement: CAPABILITY Procedure.