Answers for "generate all possible combinations of a set of characters r"

R
0

generate all possible combinations of a set of characters r

x <- c("T", "A", "C", "G")

do.call(expand.grid, rep(list(x), 3))
Posted by: Guest on April-07-2021

Code answers related to "generate all possible combinations of a set of characters r"

Browse Popular Code Answers by Language