Previous Page | Next Page

The CAPABILITY Procedure

Summary of Options

The following tables list all options by function. The section Dictionary of Options describes each option in detail.

Distribution Options

You can use the options listed in Table 5.8 to superimpose a fitted theoretical distribution function on your cdf plot.

Table 5.8 Options for Specifying a Theoretical Distribution

Option

Description

BETA(beta-options)

plots two-parameter beta distribution function, parameters and assumed known

EXPONENTIAL(exponential-options)

plots one-parameter exponential distribution function, parameter assumed known

GAMMA(gamma-options)

plots two-parameter gamma distribution function, parameter assumed known

LOGNORMAL(lognormal-options)

plots two-parameter lognormal distribution function, parameter assumed known

NORMAL(normal-options)

plots normal distribution function

WEIBULL(Weibull-options)

plots two-parameter Weibull distribution function, parameter assumed known

Table 5.9 summarizes options that specify distribution parameters and control the display of the theoretical distribution curve. You can specify these options in parentheses after the distribution option. For example, the following statements use the NORMAL option to superimpose a normal distribution:

proc capability;
   cdfplot / normal(mu=10 sigma=0.5 color=red);
run;

The COLOR= option specifies the color for the curve, and the normal-options MU= and SIGMA= specify the parameters and for the distribution function. If you do not specify these parameters, maximum likelihood estimates are computed.

Table 5.9 Distribution Options

Option

Description

Options Used with All Distributions

COLOR=

specifies color of theoretical distribution function

L=

specifies line type of theoretical distribution function

SYMBOL=

specifies character used to plot theoretical distribution function on line printer plots

W=

specifies width of theoretical distribution function

Beta-Options

ALPHA=

specifies first shape parameter for beta distribution function

BETA=

specifies second shape parameter for beta distribution function

SIGMA=

specifies scale parameter for beta distribution function

THETA=

specifies lower threshold parameter for beta distribution function

Exponential-Options

SIGMA=

specifies scale parameter for exponential distribution function

THETA=

specifies threshold parameter for exponential distribution function

Gamma-Options

ALPHA=

specifies shape parameter for gamma distribution function

ALPHADELTA=

specifies change in successive estimates of at which the Newton-Raphson approximation of terminates

ALPHAINITIAL=

specifies initial value for in the Newton-Raphson approximation of

MAXITER=

specifies maximum number of iterations in the Newton-Raphson approximation of

SIGMA=

specifies scale parameter for gamma distribution function

THETA=

specifies threshold parameter for gamma distribution function

Lognormal-Options

SIGMA=

specifies shape parameter for lognormal distribution function

THETA=

specifies threshold parameter for lognormal distribution function

ZETA=

specifies scale parameter for lognormal distribution function

Normal-Options

MU=

specifies mean for normal distribution function

SIGMA=

specifies standard deviation for normal distribution function

Weibull-Options

C=

specifies shape parameter for Weibull distribution function

CDELTA=

specifies change in successive estimates of at which the Newton-Raphson approximation of terminates

CINITIAL=

specifies initial value for c in the Newton-Raphson approximation of

MAXITER=

specifies maximum number of iterations in the Newton-Raphson approximation of

SIGMA=

specifies scale parameter for Weibull distribution function

THETA=

specifies threshold parameter for Weibull distribution function

General Options

Table 5.10 General CDFPLOT Statement Options

Option

Description

General Plot Layout Options

CONTENTS=

specifies table of contents entry for cdf plot grouping

HREF=

specifies reference lines perpendicular to the horizontal axis

HREFLABELS=

specifies labels for HREF= lines

NOCDFLEGEND

suppresses legend for superimposed theoretical cdf

NOECDF

suppresses plot of empirical (observed) distribution function

NOFRAME

suppresses frame around plotting area

NOLEGEND

suppresses legend

NOSPECLEGEND

suppresses specifications legend

VREF=

specifies reference lines perpendicular to the vertical axis

VREFLABELS=

specifies labels for VREF= lines

VSCALE=

specifies scale for vertical axis

Graphics Options

ANNOKEY

applies annotation requested in ANNOTATE= data set to key cell only

ANNOTATE=

specifies annotate data set

CAXIS=

specifies color for axis

CFRAME=

specifies color for frame

CFRAMESIDE=

specifies color for filling row label frames

CFRAMETOP=

specifies color for filling column label frames

CHREF=

specifies color for HREF= lines

CPROP=

specifies color for proportion of frequency bar

CTEXT=

specifies color for text

CTEXTSIDE=

specifies color for row labels

CTEXTTOP=

specifies color for column labels

CVREF=

specifies color for VREF= lines

DESCRIPTION=

specifies description for graphics catalog member

FONT=

specifies text font

HAXIS=

specifies AXIS statement for horizontal axis

HEIGHT=

specifies height of text used outside framed areas

HMINOR=

specifies number of horizontal axis minor tick marks

HREFLABPOS=

specifies position for HREF= line labels

INFONT=

specifies software font for text inside framed areas

INHEIGHT=

specifies height of text inside framed areas

INTERTILE=

specifies distance between tiles in comparative plot

LHREF=

specifies line style for HREF= lines

LVREF=

specifies line style for VREF= lines

NAME=

specifies name for plot in graphics catalog

NCOLS=

specifies number of columns in comparative plot

NOHLABEL

suppresses label for horizontal axis

NOVLABEL

suppresses label for vertical axis

NOVTICK

suppresses tick marks and tick mark labels for vertical axis

NROWS=

specifies number of rows in comparative plot

OVERLAY

overlays plots for different class levels (ODS Graphics only)

TURNVLABELS

turns and vertically strings out characters in labels for vertical axis

VAXIS=

specifies AXIS statement for vertical axis

VAXISLABEL=

specifies label for vertical axis

VMINOR=

specifies number of vertical axis minor tick marks

VREFLABPOS=

specifies position for VREF= line labels

WAXIS=

specifies line thickness for axes and frame

Options for Line Printer Charts

CDFSYMBOL=

specifies character for plotted points

HREFCHAR=

specifies line character for HREF= lines

VREFCHAR=

specifies line character for VREF= lines

Previous Page | Next Page | Top of Page