Chapter Contents
Chapter Contents
Previous
Previous
Next
Next
CDFPLOT Statement

Summary of Options

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

Distribution Options

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

Table 2.1: Main Distribution Options
BETA(beta-options)plots two-parameter beta distribution function, parameters \theta and \sigma assumed known
EXPONENTIAL(exponential-options)plots one-parameter exponential distribution function, parameter \theta assumed known
GAMMA(gamma-options)plots two-parameter gamma distribution function, parameter \theta assumed known
LOGNORMAL(lognormal-options)plots two-parameter lognormal distribution function, parameter \theta assumed known
NORMAL(normal-options)plots normal distribution function
WEIBULL(Weibull-options)plots two-parameter Weibull distribution function, parameter \theta assumed known

You can specify options in parentheses after each distribution option to control features of the theoretical distribution function. 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 \mu = 10 and \sigma = 0.5for the distribution function. If you do not specify these parameters, maximum likelihood estimates are computed.

Table 2.2: Options Used with All Distribution Options
COLOR=colorspecifies color of theoretical distribution function
L=linetypespecifies line type of theoretical distribution function
SYMBOL='character'specifies character used to plot theoretical distribution function if cdf plot is produced on a line printer
W=nspecifies width of theoretical distribution function

Table 2.3: Beta-Options
ALPHA=valuespecifies first shape parameter \alpha for beta distribution function
BETA=valuespecifies second shape parameter \beta for beta distribution function
SIGMA=valuespecifies scale parameter \sigmafor beta distribution function
THETA=valuespecifies lower threshold parameter \theta for beta distribution function

Table 2.4: Exponential-Options
SIGMA=valuespecifies scale parameter \sigma for exponential distribution function
THETA=valuespecifies threshold parameter \theta for exponential distribution function

Table 2.5: Gamma-Options
ALPHADELTA=valuespecifies change in successive estimates of \alphaat which the Newton-Raphson approximation of \hat{\alpha} terminates
ALPHAINITIAL=valuespecifies initial value for \alpha in the Newton-Raphson approximation of \hat{\alpha}
MAXITER=nspecifies maximum number of iterations in the Newton-Raphson approximation of \hat{\alpha}
SIGMA=valuespecifies scale parameter \sigma for gamma distribution function
ALPHA=valuespecifies shape parameter \alpha for gamma distribution function
THETA=valuespecifies threshold parameter \theta for gamma distribution function

Table 2.6: Lognormal-Options
ZETA=valuespecifies scale parameter \zeta for lognormal distribution function
SIGMA=valuespecifies shape parameter \sigma for lognormal distribution function
THETA=valuespecifies threshold parameter \theta for lognormal distribution function

Table 2.7: Normal-Options
MU=valuespecifies mean \mu for normal distribution function
SIGMA=valuespecifies standard deviation \sigma for normal distribution function

Table 2.8: Weibull-Options
C=valuespecifies shape parameter c for Weibull distribution function
CDELTA=valuespecifies change in successive estimates of c at which the Newton-Raphson approximation of \hat{c} terminates
CINITIAL=valuespecifies initial value for c in the Newton-Raphson approximation of \hat{c}
MAXITER=valuespecifies maximum number of iterations in the Newton-Raphson approximation of \hat{c}
SIGMA=valuespecifies scale parameter \sigma for Weibull distribution function
THETA=valuespecifies threshold parameter \theta for Weibull distribution function

General Options

Table 2.9: Options to Enhance Plots Produced on Graphics Devices
ANNOTATE= SAS-data-setspecifies annotate data set
CAXIS=colorspecifies color for axis
CFRAME=colorspecifies color for frame
CHREF=colorspecifies color for HREF=lines
CTEXT=colorspecifies color for text
CVREF=colorspecifies color for VREF= lines
DESCRIPTION='string'specifies description for graphics catalog member
FONT=fontspecifies software font for text
HAXIS=namespecifies AXIS statement for horizontal axis
HMINOR=nspecifies number of horizontal minor tick marks
LEGEND=name | NONEidentifies LEGEND statement
LHREF=linetypespecifies line style for HREF=lines
LVREF=linetypespecifies line style for VREF= lines
NAME='string'specifies name for plot in graphics catalog
VAXIS=namespecifies AXIS statement for vertical axis
VMINOR=nspecifies number of vertical minor tick marks

Table 2.10: Options to Enhance Plots Produced on Line Printers
CDFSYMBOL='character'specifies character for plotted points
HREFCHAR='character'specifies line character for HREF=lines
VREFCHAR='character'specifies line character for VREF= lines

Table 2.11: General Plot Layout Options
HREF=value-listspecifies reference lines perpendicular to the horizontal axis
HREFLABELS= 'label1'...'labeln'specifies labels for HREF=lines
NOCDFLEGENDsuppresses legend for superimposed theoretical cdf
NOECDFsuppresses plot of empirical (observed) distribution function
NOFRAMEsuppresses frame around plotting area
NOLEGENDsuppresses legend
NOSPECLEGENDsuppresses specifications legend
VREF=value-listspecifies reference lines perpendicular to the vertical axis
VREFLABELS= 'label1'...'labeln'specifies labels for VREF= lines
VSCALE=PERCENT | PROPORTIONspecifies scale for vertical axis

Chapter Contents
Chapter Contents
Previous
Previous
Next
Next
Top
Top

Copyright © 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.