glcTreeApply {RPMM}R Documentation

Recursive Apply Function for Gaussian RPMM Objects

Description

Recursively applies a function down the nodes of a Gaussian RPMM tree.

Usage

glcTreeApply(tr, f, start = "root", terminalOnly = FALSE, 
   asObject = TRUE, ...)

Arguments

tr

Tree object to recurse

f

Function to apply to every node

start

Starting node. Default = “root”.

terminalOnly

TRUE=only terminal nodes, FALSE=all nodes.

asObject

TRUE: f accepts node as object. FALSE: f accepts node by node name and object name, f(nn,tr)

. In the latter case, f should be defined as f <- function(nn,tree){...}.

...

Additional arguments to pass to f

Value

A list of results; names of elements are names of nodes.


[Package RPMM version 1.25 Index]