Previous Page | Next Page

Functions and CALL Routines

PROBBNRM Function



Returns a probability from a bivariate normal distribution.
Category: Probability

Syntax
Arguments
Details
Examples
See Also

Syntax

PROBBNRM(x, y, r)

Arguments

x

specifies a numeric constant, variable, or expression.

y

specifies a numeric constant, variable, or expression.

r

is a numeric correlation coefficient.

Range: -1 [le] r [le] 1

Details

The PROBBNRM function returns the probability that an observation (X, Y) from a standardized bivariate normal distribution with mean 0, variance 1, and a correlation coefficient r, is less than or equal to (x, y). That is, it returns the probability that X[le]x and Y[le]y. The following equation describes the PROBBNRM function, where u and v represent the random variables x and y, respectively:

[equation]


Examples

SAS Statements Result
p=probbnrm(.4, -.3, .2);
put p;
 
0.2783183345


See Also

Functions:

CDF Function

LOGCDF Function

LOGPDF Function

LOGSDF Function

PDF Function

SDF Function

Previous Page | Next Page | Top of Page