FitUltD (version 3.0.0)

FDist: Fit of univariate distributions with censored data ignored by default or can be inputed.

Description

Fit of univariate distributions with censored data ignored by default or can be inputed.

Usage

FDist(X, gen = 1, Cont = TRUE, inputNA, plot = FALSE,
  p.val_min = 0.05, criteria = 2, DPQR = T)

Arguments

X

A random sample to be fitted.

gen

A positive integer, indicates the sample length to be generated by the fit, 1 by default.

Cont

TRUE, by default the distribution is considered as continuos.

inputNA

A number to replace censored values, if is missing, only non-censored values will be evaluated.

plot

FALSE. If TRUE, a plot showing the data distribution will be given.

p.val_min

0.05, minimum p.value for Anderson Darling and KS Test to non-reject the null hypothesis and continue with the process.

criteria

A positive integer to define which test will use. If 1, show the distributions which were non-rejected by the Anderson Darling or Kolmogorov Smirnov tests, in other cases the criteria is that they mustn't be rejected by both.

DPQR

TRUE, creates the distribution function, density and quantile function with the names dfit, pfit and qfit.

Value

Calculate the distribution name with parameters, a function to reproduce random values from that distribution, a numeric vector of random numbers from that function, Anderson Darling and KS p.values, a plot showing the distribution difference between the real sample and the generated values and a list with the random deviates genetator, the distribution function, density and quantile function

Examples

Run this code
# NOT RUN {
FIT1<-FDist(rnorm(1000,10),p.val_min=.03,criteria=1,plot=TRUE)
#FIT1[[1]]
#FIT1[[2]]()
#FIT1[[4]]
#FIT1[[5]]



# }

Run the code above in your browser using DataLab