SDF Function
Returns a survival function.
Syntax
Required Arguments
dist
is a character string
that identifies the distribution. Valid distributions are as follows:
Note |
Except for T, F, and NORMALMIX, you can minimally identify
any distribution by its first four characters.
|
quantile
is a numeric constant,
variable or expression that specifies the value of a random variable.
parm-1,...,parm-k
are optional shape, location, or scale parameters appropriate
for the specific distribution.
Details
The SDF function computes
the survival function (upper tail) from various continuous and discrete
distributions.
For more information, see the CDF Function.
Example
The following SAS statements
produce these results.
|
|
|
|
|
|
|
|
|
|
y=sdf('CHISQ',11.264,11);
|
|
|
|
|
|
|
|
y=sdf('GENPOISSON',.9,1,.7);
|
|
y=sdf('HYPER',2,200,50,10);
|
|
|
|
|
|
|
|
|
|
|
|
y=pdf('NORMALMIX',2.3,3,.33,.33,.34,
.5,1.5,2.5,.79,1.6,4.3);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|