From 242e422690bb644dd040a02442955c55063b3f44 Mon Sep 17 00:00:00 2001 From: "Mattan S. Ben-Shachar" Date: Sat, 7 Dec 2024 21:58:26 +0200 Subject: [PATCH] fix example --- R/interpret.R | 4 ++-- man/interpret.Rd | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/R/interpret.R b/R/interpret.R index e63cad99..66878017 100644 --- a/R/interpret.R +++ b/R/interpret.R @@ -133,8 +133,8 @@ is.rules <- function(x) inherits(x, "rules") #' interpret(eta2, rules = "field2013") #' #' X <- chisq.test(mtcars$am, mtcars$cyl == 8) -#' interpret(oddsratio(X), rules = "chen2010") -#' interpret(cramers_v(X), "lovakov2021") +#' interpret(oddsratio(X), rules = "cohen1988") +#' interpret(cramers_v(X), rules = "lovakov2021") #' @export interpret <- function(x, ...) { UseMethod("interpret") diff --git a/man/interpret.Rd b/man/interpret.Rd index c831620e..3361202a 100644 --- a/man/interpret.Rd +++ b/man/interpret.Rd @@ -63,8 +63,8 @@ eta2 <- eta_squared(m) interpret(eta2, rules = "field2013") X <- chisq.test(mtcars$am, mtcars$cyl == 8) -interpret(oddsratio(X), rules = "chen2010") -interpret(cramers_v(X), "lovakov2021") +interpret(oddsratio(X), rules = "cohen1988") +interpret(cramers_v(X), rules = "lovakov2021") } \seealso{ \code{\link[=rules]{rules()}}