We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf20250 commit 846a891Copy full SHA for 846a891
R/loo_compare.R
@@ -131,7 +131,7 @@ loo_compare.default <- function(x, ...) {
131
} else {
132
diag_pnorm <- rep("", length(elpd_diff))
133
# similar predictions (Sivula et al., 2025)
134
- diag_pnorm[elpd_diff > -4 & elpd_diff != 0] <- "similar predictions"
+ diag_pnorm[elpd_diff > -4 & elpd_diff != 0] <- "|elpd_diff| < 4"
135
# possible outliers in differences (Sivula et al., 2025; Vehtari et al., 2024)
136
khat_diff <- rep(NA, length(elpd_diff))
137
khat_diff[elpd_diff != 0] <- apply(
0 commit comments