Skip to content

Commit 1a9a1ef

Browse files
committed
Fix description column of diagnostic data frames
closes #176
1 parent 3922b87 commit 1a9a1ef

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

R/mcmc-diagnostics.R

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -463,14 +463,14 @@ diagnostic_colors <- function(diagnostic = c("rhat", "neff_ratio"),
463463

464464
diagnostic_color_labels <- list(
465465
rhat = c(
466-
high = expression(hat(R) > 1.10),
466+
low = expression(hat(R) <= 1.05),
467467
ok = expression(hat(R) <= 1.10),
468-
low = expression(hat(R) <= 1.05)
468+
high = expression(hat(R) > 1.10)
469469
),
470470
neff_ratio = c(
471-
high = expression(N[eff] / N > 0.5),
471+
low = expression(N[eff] / N <= 0.1),
472472
ok = expression(N[eff] / N <= 0.5),
473-
low = expression(N[eff] / N <= 0.1)
473+
high = expression(N[eff] / N > 0.5)
474474
)
475475
)
476476

0 commit comments

Comments
 (0)