hier_nodenames: Extract name of nodes (levels)

View source: R/hier_nodenames.R

hier_nodenamesR Documentation

Extract name of nodes (levels)

Description

This function allows to extract the all the names of the nodes including all (sub)-nodes and leaves in the given hierarchy.

Usage

hier_nodenames(tree, root = NULL)

Arguments

tree

a (nested) hierarchy created using hier_create() or modified using hier_add(), hier_delete() or hier_rename().

root

(character) name of start node from which all lower level-names should be returned

Examples

h <- hier_create(root = "Total",  nodes = LETTERS[1:3])
h <- hier_add(h, root = "A", nodes = c("a1", "a5"))
hier_nodenames(h)

sdcHierarchies documentation built on Aug. 11, 2023, 1:07 a.m.