Skip to content

Commit

Permalink
Update interpret_ess_rhat.R
Browse files Browse the repository at this point in the history
  • Loading branch information
mattansb committed Jun 26, 2024
1 parent 26bfecf commit 3b4035c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions R/interpret_ess_rhat.R
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ interpret_ess <- function(ess, rules = "burkner2017") {
rules <- .match.rules(
rules,
list(
burkner2017 = rules(c(1000), c("insufficient", "sufficient"), name = "burkner2017", right = FALSE)
burkner2017 = rules(1000, c("insufficient", "sufficient"), name = "burkner2017", right = FALSE)
)
)

Expand All @@ -60,8 +60,8 @@ interpret_rhat <- function(rhat, rules = "vehtari2019") {
rules <- .match.rules(
rules,
list(
vehtari2019 = rules(c(1.01), c("converged", "failed"), name = "vehtari2019"),
gelman1992 = rules(c(1.1), c("converged", "failed"), name = "gelman1992")
vehtari2019 = rules(1.01, c("converged", "failed"), name = "vehtari2019"),
gelman1992 = rules(1.1, c("converged", "failed"), name = "gelman1992")
)
)

Expand Down

0 comments on commit 3b4035c

Please sign in to comment.