Prune {data.tree} | R Documentation |
Prunes a tree.
Description
Pruning refers to removing entire subtrees. This function has side-effects, it modifies your data.tree structure!
Usage
Prune(node, pruneFun)
Arguments
node |
The root of the sub-tree to be pruned |
pruneFun |
allows providing a prune criteria, i.e. a function taking a |
Value
the number of nodes removed
See Also
Examples
data(acme)
acme$Do(function(x) x$cost <- Aggregate(x, "cost", sum))
Prune(acme, function(x) x$cost > 700000)
print(acme, "cost")
[Package data.tree version 1.1.0 Index]