| model_weights.brmsfit {brms} | R Documentation |
Compute model weights in various ways, for instance via stacking of predictive distributions, Akaike weights, or marginal likelihoods.
## S3 method for class 'brmsfit' model_weights(x, ..., weights = "loo2", model_names = NULL) model_weights(x, ...)
x |
A fitted model object. |
... |
More fitted model objects or further arguments passed to the underlying post-processing functions. |
weights |
Name of the criterion to compute weights from.
Should be one of |
model_names |
If |
A numeric vector of weights for the models.
## Not run: # model with 'treat' as predictor fit1 <- brm(rating ~ treat + period + carry, data = inhaler) summary(fit1) # model without 'treat' as predictor fit2 <- brm(rating ~ period + carry, data = inhaler) summary(fit2) # obtain Akaike weights based on the WAIC model_weights(fit1, fit2, weights = "waic") ## End(Not run)