vbtsub {VBTree} | R Documentation |
Using vector to generate sub tree from vector binary tree
Description
Visit the vector binary tree and generate a sub tree from visited vector binary tree, through
specific assigment determined by the argument inq
.
Usage
vbtsub(x, inq)
Arguments
x |
The vector binary tree to be visited. Traversal is available by setting -1 in desired layer. |
inq |
An integer vector to determine the visiting location. The length of |
Value
Return a sub tree from visited vector binary tree, according to the argument inq
.
See Also
Examples
#Make vector binary tree:
colnamevbt <- dl2vbt(chrvec2dl(colnames(datatest)))
#Generating sub tree by specific assignment:
vbtsub(colnamevbt, c(2, 3, 1, 1))
#Generating sub tree with traversal in the second layers:
vbtsub(colnamevbt, c(2, -1, 1, 1))
#Generating sub tree with invalid assignments in 1st and 3rd layers:
vbtsub(colnamevbt, c(4, 3, 7, 1))
[Package VBTree version 0.1.1 Index]