From 554ca85c13833f8c02b4918e08928d71a99790c3 Mon Sep 17 00:00:00 2001 From: mattansb <35330040+mattansb@users.noreply.github.com> Date: Tue, 26 Jan 2021 06:42:18 +0200 Subject: [PATCH] #364 --- R/rope_range.R | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/R/rope_range.R b/R/rope_range.R index 42c60bc81..99c57910d 100644 --- a/R/rope_range.R +++ b/R/rope_range.R @@ -175,13 +175,13 @@ rope_range.mlm <- function(x, ...) { { # Linear Models if (information$is_linear) { + warning("Note that the default rope range for binomial models might change in future versions (see https://github.com/easystats/bayestestR/issues/364).", + "Please set it explicitly to preserve current results.") 0.1 * stats::sd(response, na.rm = TRUE) # Logistic Regression Models } else if (information$is_binomial) { - warning("Note that the default rope range for binomial models might change in future versions (see https://github.com/easystats/bayestestR/issues/364). Please set it explicitly (`range = 0.1 * pi / sqrt(3)`) to preserve current results.") 0.1 * pi / sqrt(3) - # Count Models } else if (information$is_count) { sig <- stats::sigma(x)