brms 2.14.0
paul-buerkner
released this
09 Oct 08:49
·
1341 commits
to master
since this release
New Features
- Experimentally support within-chain parallelizaion via
reduce_sum
using argumentthreads
inbrm
thanks to Sebastian Weber. (#892) - Add algorithm
fixed_param
to sample from fixed parameter values. (#973) - No longer remove
NA
values indata
if there are unused because of
thesubset
addition argument. (#895) - Combine
by
variables and within-group correlation matrices
in group-level terms. (#674) - Add argument
robust
to thesummary
method. (#976) - Parallelize evaluation of the
posterior_predict
andlog_lik
methods via argumentcores
. (#819) - Compute effective number of parameters in
kfold
. - Show prior sources and vectorization in the
print
output
ofbrmsprior
objects. (#761) - Store unused variables in the model's data frame via
argumentunused
of functionbrmsformula
. - Support posterior mean predictions in
emmeans
via
dpar = "mean"
thanks to Russell V. Lenth. (#993) - Improve control of which parameters should be saved via
functionsave_pars
and corresponding argument inbrm
. (#746) - Add method
posterior_smooths
to computing predictions
of individual smooth terms. (#738) - Allow to display grouping variables in
conditional_effects
using theeffects
argument. (#1012)
Other Changes
- Improve sampling efficiency for a lot of models by using Stan's
GLM-primitives even in non-GLM cases. (#984) - Improve sampling efficiency of multilevel models with
within-group covariances thanks to David Westergaard. (#977) - Deprecate argument
probs
in theconditional_effects
method
in favor of argumentprob
.
Bug Fixes
- Fix a problem in
pp_check
inducing wronger observation
orders in time series models thanks to Fiona Seaton. (#1007) - Fix multiple problems with
loo_moment_match
that prevented
it from working for some more complex models.