Closed bhogan-mitre closed 3 years ago
Reprex from data.tree vignette portfolio example:
data.tree
fileName <- system.file("extdata", "portfolio.csv", package="data.tree") pfodf <- read.csv(fileName, stringsAsFactors = FALSE) pfodf$pathString <- paste("portfolio", pfodf$AssetCategory, pfodf$AssetClass, pfodf$SubAssetClass, pfodf$ISIN, sep = "/") pfo <- as.Node(pfodf)
Before:
> collapsibleTree(pfo) [1] "Node$fields will be deprecated in the next release. Please use Node$attributes instead." [1] "Node$fields will be deprecated in the next release. Please use Node$attributes instead."
After:
> collapsibleTree(pfo) >
Closes #59
Reprex from
data.tree
vignette portfolio example:Before:
After:
Closes #59