@@ -54,7 +54,8 @@ effectsize.htest <- function(model, type = NULL, verbose = TRUE, ...) {
5454 args <- list (
5555 t = unname(model $ statistic ),
5656 df_error = unname(model $ parameter ),
57- paired = ! grepl(" Two" , model $ method )
57+ paired = ! grepl(" Two" , model $ method ),
58+ verbose = verbose
5859 )
5960 } else {
6061 if (grepl(" by " , model $ data.name , fixed = TRUE )) {
@@ -144,6 +145,7 @@ effectsize.htest <- function(model, type = NULL, verbose = TRUE, ...) {
144145 nrow = nr ,
145146 ncol = nc ,
146147 p = p ,
148+ verbose = verbose ,
147149 ...
148150 )
149151 } else {
@@ -198,6 +200,7 @@ effectsize.htest <- function(model, type = NULL, verbose = TRUE, ...) {
198200 f = model $ statistic ,
199201 df = model $ parameter [1 ],
200202 df_error = model $ parameter [2 ],
203+ verbose = verbose ,
201204 ...
202205 )
203206 colnames(out )[1 ] <- sub(" _partial" , " " , colnames(out )[1 ])
@@ -216,9 +219,9 @@ effectsize.htest <- function(model, type = NULL, verbose = TRUE, ...) {
216219 .fail_if_approx(approx , " cohens_g" )
217220
218221 if (inherits(data , " table" )) {
219- out <- cohens_g(data , ... )
222+ out <- cohens_g(data , verbose = verbose , ... )
220223 } else {
221- out <- cohens_g(data [[1 ]], data [[2 ]], ... )
224+ out <- cohens_g(data [[1 ]], data [[2 ]], verbose = verbose , ... )
222225 }
223226 out
224227}
@@ -251,7 +254,8 @@ effectsize.htest <- function(model, type = NULL, verbose = TRUE, ...) {
251254 args <- list (
252255 x = data [[1 ]],
253256 y = if (ncol(data ) == 2 ) data [[2 ]],
254- paired = grepl(" signed rank" , model $ method , fixed = TRUE )
257+ paired = grepl(" signed rank" , model $ method , fixed = TRUE ),
258+ verbose = verbose
255259 )
256260
257261 if (type == " cles" ) {
@@ -278,10 +282,10 @@ effectsize.htest <- function(model, type = NULL, verbose = TRUE, ...) {
278282
279283
280284 if (inherits(data , " data.frame" )) {
281- out <- rank_epsilon_squared(data [[1 ]], data [[2 ]], ... )
285+ out <- rank_epsilon_squared(data [[1 ]], data [[2 ]], verbose = verbose , ... )
282286 } else {
283287 # data frame
284- out <- rank_epsilon_squared(data , ... )
288+ out <- rank_epsilon_squared(data , verbose = verbose , ... )
285289 }
286290 out
287291}
@@ -300,7 +304,7 @@ effectsize.htest <- function(model, type = NULL, verbose = TRUE, ...) {
300304 data <- as.data.frame(data )[c(" Freq" , " Var2" , " Var1" )]
301305 }
302306
303- out <- kendalls_w(data [[1 ]], data [[2 ]], data [[3 ]], ... )
307+ out <- kendalls_w(data [[1 ]], data [[2 ]], data [[3 ]], verbose = verbose , ... )
304308 out
305309}
306310
0 commit comments