loglikedw3 {DiscreteWeibull} | R Documentation |
Loglikelihood function (changed in sign) for the type 3 discrete Weibull distribution
loglikedw3(par, x)
par |
the vector of parameters, |
x |
the vector of sample values |
the value of the loglikelihood function (changed in sign) for the observed sample x
under the parameters par
Alessandro Barbiero
n <- 20
c <- 1/3
beta <- 2/3
x <- rdweibull3(n, c, beta)
par <- estdweibull3(x, "ML")
par
-loglikedw3(par, x)