Description Usage Arguments Value See Also Examples
Log-likelihood function of the discrete inverse Weibull
1 | loglikediw(x, q, beta)
|
x |
a vector of sample values |
q |
the value of the q parameter |
beta |
the value of the β parameter |
the value of the log-likelihood function (changed in sign) of the discrete inverse Weibull distribution with parameters q and β computed on a sample x
1 2 3 4 5 6 7 8 9 10 11 | n<-100
q<-0.4
beta<-2
x<-rdiweibull(n, q, beta)
# loglikelihood function (changed in sign) computed on the true values
loglikediw(x, q, beta)
par<-estdiweibull(x, method="H")
par
# loglikelihood function (changed in sign) computed on the ML estimates
loglikediw(x, par[1], par[2])
# it should be smaller than before...
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.