Return data.frame of all binary subsets of a list of variable names
e_model_binary_complete(var_names)
a character list of variable names
a data.frame of all binary subsets of variables
e_model_binary_complete(
var_names = c("a", "b", "c")
)
#> a b c
#> 1
#> 2 a
#> 3 b
#> 4 a b
#> 5 c
#> 6 a c
#> 7 b c
#> 8 a b c