Builds the full design grid of binary fixed-effect patterns used by COLA to aggregate counts and outcome sums. When `intercept = TRUE`, an `Intercept` column of ones is included and all other variables are expanded over {0,1}.
make_patterns(x_names, intercept = TRUE)A tibble of all binary patterns over `x_names` (with/without `Intercept`), one row per pattern.
Character vector of fixed-effect names. If `intercept = TRUE`, it may include `"Intercept"`; otherwise it must not.
Logical; include a fixed intercept column. Default: `TRUE`.