Previous Page | Next Page

Functions and CALL Routines

POISSON Function



Returns the probability from a Poisson distribution.
Category: Probability
See: CDF Function

Syntax
Arguments
Details
Examples
See Also

Syntax

POISSON(m,n)


Arguments

m

is a numeric mean parameter.

Range: m [ge] 0
n

is an integer random variable.

Range: n [ge] 0

Details

The POISSON function returns the probability that an observation from a Poisson distribution, with mean m, is less than or equal to n. To compute the probability that an observation is equal to a given value, n, compute the difference of two probabilities from the Poisson distribution for n and n-1.


Examples

SAS Statements Results
x=poisson(1,2);
0.9196986029


See Also

Functions:

CDF Function

LOGCDF Function

LOGPDF Function

LOGSDF Function

PDF Function

SDF Function

Previous Page | Next Page | Top of Page