From 83c526d4dca32be9dac1886d0fc05703a25892ab Mon Sep 17 00:00:00 2001 From: Indrajeet Patil Date: Wed, 20 Sep 2023 20:39:49 +0200 Subject: [PATCH] fix strict workflow --- R/eta_squared-methods.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/R/eta_squared-methods.R b/R/eta_squared-methods.R index 12b5463e..9368f4f6 100644 --- a/R/eta_squared-methods.R +++ b/R/eta_squared-methods.R @@ -110,7 +110,7 @@ within <- names(model$idata) within <- lapply(within, function(x) c(NA, x)) within <- do.call(expand.grid, within) - within <- apply(within, 1, na.omit) + within <- apply(within, 1, stats::na.omit) ns <- sapply(within, length) within <- sapply(within, paste, collapse = ":") within <- within[order(ns)]