Is there a way to try every combination of add_candidates() for stacks()?

Let's say I have for models like so:

stack_models = stacks() |>
  add_candidates(model1) |>
  add_candidates(model2) |>
  add_candidates(model3) |>
  add_candidates(model4)

Is there a way to:

  1. try just model 1, 2, ...
  2. try model 1 + 2, 1 + 3, ...
  3. try model 1 + 2 + 3, 1 + 2 + 4, ...
  4. try all four
    automatically?

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.