Learn R Programming

DnE (version 2.1.0)

is.pois: is.pois

Description

judge if the data obeys poisson distribution

Usage

is.pois(x, a, lambda = NULL)

Arguments

x
x
a
significance level
lambda
parameter, the number of successful events in unit time.

Value

Details

Given a set of observations from a certain distribution, this function is used to test whether the observations are from a distribution of possion distribution or not. Usually, to ensure the function works well, the sample size needs to be large enough, i.e. the result will be stable if the sample size is larger than 100.

References

ROBERT V. HOGG/ALLEN T. CRAIG (Fifth Edition) Introduction Mathematical Statistics.

See Also

is.dt , DnE-package

Examples

Run this code
require(stats)
examplecheck<-rpois(100,10)
is.pois(examplecheck,0.05)
##---- Should be DIRECTLY executable !! ----
##-- ==>  Define data, use random,
##--	or do  help(data=index)  for the standard data sets.

Run the code above in your browser using DataLab