Answers for "Non-redundant version of expand.grid"

R
0

Non-redundant version of expand.grid

outer( c("aa", "ab", "cc"), c("aa", "ab", "cc") , "paste" )

vals <- c( c("aa", "ab", "cc"), c("aa", "ab", "cc") )
vals <- unique( vals )
combn( vals , 2 )
Posted by: Guest on December-23-2021

Code answers related to "Non-redundant version of expand.grid"

Browse Popular Code Answers by Language