estdiweibull: Estimation of parameters

Description Usage Arguments Details Value See Also Examples

View source: R/estdiweibull.R

Description

Sample estimation of the parameters of the discrete inverse Weibull distribution

Usage

1
estdiweibull(x, method="P", control=list())

Arguments

x

a vector of sample values

method

the estimation method that will be carried out: "P" method of proportion, "M" method of moments, "H" heuristic-maximum likelihood method, "PP" graphical method-probability plot

control

a list of additional parameters: eps, nmax for the method of moments; beta1, z, r, Leps for the heuristic method

Details

For a description of the methods, have a look at the reference. Note that they may be not applicable to some specific samples. For examples, the method of proportion cannot be applied if there are no 1s in the samples; it cannot be applied for estimating β if all the sample values are ≤q 2. The method of moments cannot be applied for estimating β if all the sample values are ≤q 2; besides, it may return unreliable results since the first and second moments can be computed only if β>2. The heuristic method cannot be applied for estimating β if all the sample values are ≤q 2.

Value

a vector containing the two estimates of q and β

See Also

heuristic, Ediweibull

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
n<-100 
q<-0.5 
beta<-2.5
# generation of a sample
x<-rdiweibull(n, q, beta)
# sample estimation through each of the implemented methods
estdiweibull(x, method="P") 
estdiweibull(x, method="M")
estdiweibull(x, method="H")
estdiweibull(x, method="PP")

DiscreteInverseWeibull documentation built on May 2, 2019, 4:20 a.m.