quae_postea | R Documentation |
For a list
of multiple partial sequences (of vector
objects), generate another list
which, for each element, gives all elements that occur after it ("quae postea"). This is analogous to a recursive trace through all partial sequences from left to right. A final element "omega"
is added to all sets to avoid empty vectors. See also quae_antea
.
quae_postea(obj)
## S3 method for class 'list'
quae_postea(obj)
obj |
A |
A list
of vector
objects, which contain the elements that occur after 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_postea(a)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.