Learn R Programming

mixvlmc (version 0.2.1)

states: State space of a context tree

Description

This function returns the state space of a context tree.

Usage

states(ct)

Value

the state space of the context tree.

Arguments

ct

a context tree.

Examples

Run this code
dts <- c(0, 1, 1, 1, 0, 0, 1, 0, 1, 0)
dts_ctree <- ctx_tree(dts, min_size = 1, max_depth = 2)
## should be c(0, 1)
states(dts_ctree)

Run the code above in your browser using DataLab