SetFormat {data.tree} | R Documentation |
Set a formatter function on a specific node
Description
Formatter functions set on a Node act as a default formatter when printing and using
the Get
method. The formatter is inherited, meaning that whenever
Get
fetches an attribute from a Node
, it checks on the Node
or
on any of its ancestors whether a formatter is set.
Usage
SetFormat(node, name, formatFun)
Arguments
node |
The node on which to set the formatter |
name |
The attribute name for which to set the formatter |
formatFun |
The formatter, i.e. a function taking a value as an input, and formatting returning the formatted value |
See Also
Get
print.Node
Examples
data(acme)
acme$Set(id = 1:(acme$totalCount))
SetFormat(acme, "id", function(x) FormatPercent(x, digits = 0))
SetFormat(Climb(acme, "IT"), "id", FormatFixedDecimal)
print(acme, "id")
# Calling Get with an explicit formatter will overwrite the default set on the Node:
print(acme, id = acme$Get("id", format = function(x) paste0("id:", x)))
# Or, to avoid formatters, even though you set them on a Node:
print(acme, id = acme$Get("id", format = identity))
[Package data.tree version 1.1.0 Index]