loglikediw function

likelihood function

likelihood function

Log-likelihood function of the discrete inverse Weibull

loglikediw(x, q, beta)

Arguments

  • x: a vector of sample values
  • q: the value of the qq parameter
  • beta: the value of the β\beta parameter

Returns

the value of the log-likelihood function (changed in sign) of the discrete inverse Weibull distribution with parameters qq and β\beta computed on a sample x

See Also

heuristic

Examples

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...
  • Maintainer: Alessandro Barbiero
  • License: GPL
  • Last published: 2016-05-01

Useful links