loo_model_weights.brmsfit | R Documentation |
Compute model weights for brmsfit
objects via stacking
or pseudo-BMA weighting. For more details, see
loo::loo_model_weights
.
## S3 method for class 'brmsfit'
loo_model_weights(x, ..., model_names = NULL)
x |
A |
... |
More |
model_names |
If |
A named vector of model weights.
## Not run:
# model with population-level effects only
fit1 <- brm(rating ~ treat + period + carry,
data = inhaler, family = "gaussian")
# model with an additional varying intercept for subjects
fit2 <- brm(rating ~ treat + period + carry + (1|subject),
data = inhaler, family = "gaussian")
loo_model_weights(fit1, fit2)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.