Enumerate all weighting-scheme combinations of a given size
get_all_weights_combs.RdFor each `n_combo` in `n_items`, enumerates every `combn(var_codes, n_combo)` and returns one weighting scheme per combination, with weight `1` on the variables in the combination and the others omitted entirely. Useful for exhaustive batch analyses (e.g. all 3-of-N PTIs).
Value
A named list of tibbles. Each element is a tibble with columns `var_code` and `weight`; element names follow the pattern `"Wght of <n_combo> comb no. <index>"`. Total length is `sum(choose(length(var_codes), n_items))`.
See also
Other weights:
get_min_admin_wght(),
get_rand_weights()