| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| performance 0.17.1 source code.tar.gz | 2026-06-30 | 4.0 MB | |
| performance 0.17.1 source code.zip | 2026-06-30 | 4.2 MB | |
| README.md | 2026-06-30 | 1.3 kB | |
| Totals: 3 Items | 8.2 MB | 1 | |
Changes
-
check_overdispersion()gets aresidual_typeargument, to decide whether overdispersion tests are based on simulated or "standard" residuals. -
check_model()gains appc_rangeargument for posterior predictive checks plot. Use this to zoom in on a specific region of interest, especially if the response variable has a large range. -
check_predictions()gains ax_limitsargument for plots. Use this to zoom in on a specific region of interest, especially if the response variable has a large range. -
New function
check_priors()to conduct prior predictive checks for Bayesian models.
Bug fixes
-
The overdispersion plot in
check_model()now uses simulated residuals (based on the DHARMa package) forglmmTMBmodels and mixed models. This fixes wonky-looking overdispersion plots for these model types (#654). -
Fixed the expected variance calculation in
.expected_variance()so thatglmmTMBnbinom1andnbinom2families use the correct formulas from the glmmTMB documentation:nbinom1: V = μ(1 + φ);nbinom2: V = μ(1 + μ/φ). Previously, glmmTMBnbinom1models incorrectly used thenbinom2formula because it matched a more generalis_negbinbranch first (#654).