View source: R/node_methods_traversal.R
Do | R Documentation |
Executes a function on a set of nodes
# OO-style:
# node$Do(fun,
# ...,
# traversal = c("pre-order", "post-order", "in-order", "level", "ancestor"),
# pruneFun = NULL,
# filterFun = NULL)
# traditional:
Do(nodes, fun, ...)
nodes |
The nodes on which to perform the Get (typically obtained via |
fun |
the function to execute. The function is expected to be either a Method, or to take a Node as its first argument |
... |
any additional parameters to be passed on to fun |
Node
Get
Set
Traverse
data(acme)
traversal <- Traverse(acme)
Do(traversal, function(node) node$expectedCost <- node$p * node$cost)
print(acme, "expectedCost")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.