Skip to contents

This function recursively collects history from all nodes in a gating tree, aggregating any historical data stored at each node.

Usage

collect_history(tree)

Arguments

tree

A tree object representing the root or any subtree in a gating tree.

Value

A list containing all historical data from the tree.

Examples

if (FALSE) { # \dontrun{
# Assuming `tree` is a root node of a gating tree with history data:
historyData <- collect_history(tree)
} # }