Learn R Programming

DnE (version 2.1.0)

is.exp: is.exp

Description

judge if the data obeys exp exponential distribution.

Usage

is.exp(x, m, a, lambda = NULL)

Arguments

x
data
m
the number of intervals you want to divide the data in, default value is 10
a
significance level
lambda
the parameter lambda

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 Exponential 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. The Exponential distribution mentioned in this function is the one with mean 1/lambda and variance 1/lambda^2. The function will work better if the number of intervals you choose to divide the data in is between 10 and 20. This number cannot excess the number of given oberservations.

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<-rexp(100,10)
is.exp(examplecheck,10,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