Skip to content

Commit

Permalink
package name typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Insang Song committed Aug 18, 2024
1 parent b254be6 commit c971703
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/base_learner.R
Original file line number Diff line number Diff line change
Expand Up @@ -653,7 +653,7 @@ generate_cv_index_spt <-
stop("ngroup_init should be less than cv_pairs.")
}
# 2-combinations of ngroup_init check
if (ncol(combn::combn(seq_len(ngroup_init), 2)) < cv_pairs) {
if (ncol(utils::combn(seq_len(ngroup_init), 2)) < cv_pairs) {
stop(
paste0(
"cv_pairs cannot be larger than ",
Expand Down

0 comments on commit c971703

Please sign in to comment.