extract_log_lik {bellreg} | R Documentation |
Extract pointwise log-likelihood from a Stan model for a bellreg model
Description
This function extracts the pointwise log-likelihood for a bellreg model.
Usage
extract_log_lik(object, ...)
Arguments
object |
an object of the class bellreg. |
... |
further arguments passed to or from other methods. |
Value
a matrix with the pointwise extracted log-likelihood associated with a bellreg model.
Examples
data(faults)
fit <- bellreg(nf ~ lroll, data = faults, approach = "bayes")
loglik <- extract_log_lik(fit)
data(cells)
fit <- zibellreg(cells ~ 1|smoker+gender, data = cells, approach = "bayes", chains = 1, iter = 100)
loglik <- extract_log_lik(fit)
[Package bellreg version 0.0.2.1 Index]