Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
strengejacke committed Feb 4, 2024
1 parent d40a452 commit 10a0c4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/check_outliers.R
Original file line number Diff line number Diff line change
Expand Up @@ -1748,7 +1748,7 @@ check_outliers.metabin <- check_outliers.metagen
# samples sizes will give highly variable cov matrices, as so the "smallest"
# one will probably miss-represent the data.

if ((nrow(x) / ncol(x)) > 10 && isTRUE(verbose)) {
if ((nrow(x) / ncol(x)) <= 10 && isTRUE(verbose)) {
insight::format_alert("Sample size is too small resp. number of variables is too high in your data for MCD to be reliable.") # nolint
}

Expand Down

0 comments on commit 10a0c4e

Please sign in to comment.