is.unif: is.unif

Description Usage Arguments Details Value Note Author(s) References See Also Examples

View source: R/is.unif.R

Description

judge if the data obeys uniform distribution

Usage

1
is.unif(x, m, a, sita1 = NULL, sita2 = NULL)

Arguments

x

data

m

the number of intervals you want to divide the data in, default value is 10

a

significance level

sita1

distribution parameter, the lower limit of the data

sita2

distribution parameter, the upper limit of the data

Details

Given a set of observations from a certain distribution, this function is used to test whether the observations are from a distribution of Uniform 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 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.

Value

if the data possibly obeys uniform distribution, return a value named qchisq which represents the possibility. The larger qchisq is, the larger the possibility will be; else return -1.

Note

please pay attention to the definition of parameters in our functions.

Author(s)

JunYao Chen, CuiYi He, BoXian Wei

References

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

See Also

is.dt , DnE-package

Examples

1
2
3
4
5
6
require(stats)
examplecheck<-runif(100,10,50)
is.unif(examplecheck,10,0.05)
##---- Should be DIRECTLY executable !! ----
##-- ==>  Define data, use random,
##--	or do  help(data=index)  for the standard data sets.

DnE documentation built on May 2, 2019, 4:03 p.m.