Chapter Contents |
Previous |
Next |
FINV |
Category: | Quantile |
Syntax | |
Arguments | |
Details | |
Examples |
Syntax |
FINV (p, ndf, ddf <,nc>) |
Range: | 0 p < 1 |
Range: | ndf > 0 |
Range: | ddf > 0 |
Range: | nc 0 |
Details |
The FINV function returns the pth quantile from the F distribution with numerator degrees of freedom ndf, denominator degrees of freedom ddf, and noncentrality parameter nc. The probability that an observation from the F distribution is less than the quantile is p. This function accepts noninteger degrees of freedom parameters ndf and ddf.
If the optional parameter nc is not specified or has the value 0, the quantile from the central F distribution is returned. The noncentrality parameter nc is defined such that if X and Y are normal random variables with means and 0, respectively, and variance 1, then has a noncentral F distribution with nc = 2.
Note: FINV is the inverse of the PROBF function.
Examples |
These statements compute the 95th quantile value of a central F distribution with 2 and 10 degrees of freedom and a noncentral F distribution with 2 and 10 degrees of freedom and a noncentrality parameter equal to 3.2:
SAS Statements | Results |
---|---|
q1=finv(.95,2,10); |
4.1028210151 |
q2=finv(.95,2,10.3,2); |
7.583766024 |
Chapter Contents |
Previous |
Next |
Top of Page |
Copyright 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.