Learn R Programming

DnE (version 1.0)

is.dt: is.dt

Description

judge the distribution of the data.

Usage

is.dt(x, m, a)

Arguments

x
data
m
the numbers of intervals of data you wanna devide
a
confidence level

Value

  • the distribution 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 normal distribution or not. The function will work better if the number you choose to devide the interval is between 10 and 20. This number cannot excess the number of given oberservation.

References

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

See Also

DnE-package , is.bern , is.beta , is.binom , is.chisq , is.degen , is.exp , is.f , is.gamma , is.geom , is.nbinom , is.norm , is.pois , is.t , is.unif

Examples

Run this code
require(stats)
x=rpois(100,0.5)
is.dt(x,10,0.05)
#@@@@   dis       pr
#@@@@4 pois 5.656147
#we will check out the distribution of dataset x with the function is.dt and with the confidence level of 0.05#

Run the code above in your browser using DataLab