Last data update: 2014.03.03

R: try to determine the redundant terminal(or leaf) nodes that...
checkRedundantNodesR Documentation

try to determine the redundant terminal(or leaf) nodes that can be removed

Description

THese leaf nodes make the gating trees to be different from one another and can be removed by the subsequent convevient call dropRedundantNodes.

Usage

checkRedundantNodes(x, path = "auto", ...)

Arguments

x

GatingSet or list of groups(each group is a list of 'GatingSet'). When it is a list, it is usually the outcome from groupByTree.

path

argumented passed to getNodes. The default value is "auto".

...

other arguments passed to getNodes.

Value

a list of the character vectors inicating the nodes that are considered to be redundant for each group of GatingSets.

Examples

## Not run: 
gslist <- list(gs1, gs2, gs3, gs4, gs5)
gs_groups <- groupByTree(gslist)
toRm <- checkRedundantNodes(gs_groups)

## End(Not run)

Results