is_reversed | R Documentation |
This function returns TRUE
if the node is using a reverse temporal ordering
and FALSE
in the other case.
is_reversed(node)
node |
a |
TRUE
if the node node
use a reverse temporal ordering, FALSE
when this is not the case
rev.ctx_node()
dts <- c(0, 1, 1, 1, 0, 0, 1, 0, 1, 0)
dts_ctree <- ctx_tree(dts, min_size = 1, max_depth = 3)
is_reversed(find_sequence(dts_ctree, c(0, 0)))
is_reversed(find_sequence(dts_ctree, c(1, 0), reverse = TRUE))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.