Skip to content

Commit

Permalink
fix strict workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
IndrajeetPatil committed Sep 20, 2023
1 parent 325f6f6 commit 83c526d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/eta_squared-methods.R
Original file line number Diff line number Diff line change
Expand Up @@ -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)]
Expand Down

0 comments on commit 83c526d

Please sign in to comment.