is_ctx_tree | R Documentation |
This function returns TRUE
for context trees and FALSE
for other objects.
is_ctx_tree(x)
x |
an R object. |
TRUE
for context trees.
dts <- c(0, 1, 1, 1, 0, 0, 1, 0, 1, 0)
dts_ctree <- ctx_tree(dts, min_size = 1, max_depth = 2)
is_ctx_tree(dts_ctree)
is_ctx_tree(dts)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.