Learn R Programming

bellreg (version 0.0.2.1)

extract_log_lik: 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, ...)

Value

a matrix with the pointwise extracted log-likelihood associated with a bellreg model.

Arguments

object

an object of the class bellreg.

...

further arguments passed to or from other methods.

Examples

Run this code
# \donttest{
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)

# }

Run the code above in your browser using DataLab