View source: R/log_lik_draws.R
log_lik_draws | R Documentation |
Extract log likelihood from fitted model and return as a draws object.
log_lik_draws(x, ...)
## S3 method for class 'stanfit'
log_lik_draws(x, joint = FALSE, log_lik_name = "log_lik", ...)
## S3 method for class 'CmdStanFit'
log_lik_draws(x, joint = FALSE, log_lik_name = "log_lik", ...)
## S3 method for class 'draws'
log_lik_draws(x, joint = FALSE, log_lik_name = "log_lik", ...)
x |
Model fit or draws object. |
... |
Arguments passed to individual methods. |
joint |
Logical indicating whether to return the joint log likelihood or array. Default is FALSE. |
log_lik_name |
Name of parameter in Stan model corresponding to log likelihood, default is "log_lik". |
A draws_array object containing log_lik values.
ex <- example_powerscale_model()
drw <- ex$draws
log_lik_draws(drw)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.