quae_antea | R Documentation |
For a list
of multiple partial sequences (of vector
objects), generate another list
which, for each element, gives the elements that occur before it ("quae antea"). This is analogous to a recursive trace through all partial sequences from right to left. An element "alpha"
is added to all sets to avoid empty vectors. See also quae_postea
.
quae_antea(obj)
## S3 method for class 'list'
quae_antea(obj)
obj |
A |
A list
of vector
objects, which contain the elements that occur before any one given element in the input sequences.
x <- c("A", "B", "C")
y <- c("B", "D", "E", "C", "F")
z <- c("C", "G")
a <- list(x, y, z)
quae_antea(a)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.