Skip to content

Commit

Permalink
missed a call to data.table
Browse files Browse the repository at this point in the history
  • Loading branch information
Sean Lucey committed Nov 21, 2023
1 parent 0ebf47a commit 4b49d29
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/assign_unknown.R
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ assign_unknown <- function (comData, unkVar,
#combinations of strata codes
num.combos <- data.table::setDT(list(gtools::combinations(length(strata.code),
inum, strata.code)))
combos <- rbindlist(list(combos, num.combos), fill = T)
combos <- data.table::rbindlist(list(combos, num.combos), fill = T)
}


Expand Down

0 comments on commit 4b49d29

Please sign in to comment.