evs_exclude.blender is a wrapper for expand.grid with some post-processing via array_branch and reduce.

evs_exclude.blender(x, y)

Arguments

x

See expand.grid

y

See expand.grid

Value

A vector of pairs of event labels to be excluded in the call to $exclude.mix()

Examples

evs_exclude.blender(
  x = c("A", "B")
  , y = c("A", "D", "Z")
  )
#>      [,1] [,2]
#> [1,] "A"  "A" 
#> [2,] "B"  "A" 
#> [3,] "A"  "D" 
#> [4,] "B"  "D" 
#> [5,] "A"  "Z" 
#> [6,] "B"  "Z"