|
Chapter Contents |
Previous |
Next |
| HISTOGRAM Statement |
The following sections provide information on the families of parametric distributions that you can fit with the HISTOGRAM statement. Properties of these distributions are discussed by Johnson and Kotz (1970).

whereNote: This notation is consistent with that of other distributions that you can fit with the HISTOGRAM statement. However, many texts, including Johnson and Kotz (1970), write the beta density function asand
lower threshold parameter (lower endpoint parameter)
scale parameter
![]()
shape parameter
![]()
shape parameter
h = width of histogram interval

The two notations are related as follows:The range of the beta distribution is bounded below by a threshold parameter![]()
![]()
![]()
In addition, you can specify
and
with the ALPHA= and BETA= beta-options,
respectively. By default, the procedure calculates maximum
likelihood estimates for
and
. For example,
to fit a beta density curve to a set of data bounded below by
32 and above by 212 with maximum likelihood estimates
for
and
, use the following statement:
histogram length / beta(theta=32 sigma=180);The beta distributions are also referred to as Pearson Type I or II distributions. These include the power-function distribution (
You can use the DATA step function BETAINV to compute beta quantiles and the DATA step function PROBBETA to compute beta probabilities.

whereThe threshold parameterthreshold parameter
scale parameter
h = width of histogram interval
The exponential distribution is a special case of
both the gamma distribution (with
) and
the Weibull distribution (with c=1). A related
distribution is the extreme value distribution.
If Y = exp(-X) has an exponential distribution, then
X has an extreme value distribution.

whereThe threshold parameterthreshold parameter
scale parameter
![]()
shape parameter
h = width of histogram interval

![p(x) = \{[2^{\frac{\nu}2-1}\Gamma(\frac{\nu}2)]
^{-1}x^{\nu-1} \exp(-\frac{x^2}2)
& {for x \gt 0} \ 0 & {for x \leq 0}
.](images/hsteq52.gif)
You can use the DATA step function GAMINV to compute gamma quantiles and the DATA step function PROBGAM to compute gamma probabilities.

wherethreshold parameter
scale parameter
![]()
shape parameter
h = width of histogram interval
The threshold parameter
must be less than the
minimum data value. You can specify
with the THRESHOLD= lognormal-option.
By default,
.
If you specify THETA=EST, a maximum likelihood estimate
is computed for
.You can specify
and
with the SCALE= and SHAPE=
lognormal-options, respectively. By default, the
procedure calculates maximum likelihood estimates for these
parameters.
Note: This book uses
to denote the shape
parameter of the lognormal distribution, whereas
is used to denote the scale parameter of the beta,
exponential, gamma, normal, and Weibull distributions.
The use of
to denote the lognormal shape parameter is
based on the fact that
has a standard normal distribution if X is lognormally
distributed.

whereYou can specifymean
standard deviation
h = width of histogram interval
You can use the DATA step function PROBIT to compute normal quantiles and the DATA step function PROBNORM to compute probabilities.

wherethreshold parameter
scale parameter
c = shape parameter (c >0) h = width of histogram interval
The threshold parameter
must be less than the minimum
data value. You can specify
with the THRESHOLD= Weibull-option.
By default,
.
If you specify THETA=EST, a maximum likelihood estimate
is computed for
.You can specify
and c with the SCALE= and SHAPE= Weibull-options,
respectively. By default, the procedure calculates
maximum likelihood estimates for
and c.
The exponential distribution is a special case of the Weibull distribution where c=1.
|
Chapter Contents |
Previous |
Next |
Top |
Copyright © 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.