likelihood {Davies} | R Documentation |
likelihood of observing data
, on the hypothesis of
their coming from a Davies distribution of parameters params
.
neg.log.likelihood
gives minus the loglikelihood
likelihood(params, data)
params |
Parameters of the Davies distribution |
data |
dataset for which the likelihood is computed |
Robin K. S. Hankin
p1 <- c(10,0.1,-0.1) p2 <- c(10,0.4,-0.1) data <- rdavies(100,p1) likelihood(p1,data) likelihood(p2,data) #should be smaller. neg.log.likelihood(p1,rstupid(100)) #should be large negative.