formatToHierarchicalData {clinDataReview} | R Documentation |
Format data to a hierarchical data, in the format as required by the plotly sunburst and treemap.
Description
Note that new variables are created for each variable of interest (the variables are not overwritten) to avoid issues with cases where the value in the child and parent variables are the same.
Usage
formatToHierarchicalData(data, vars, valueVar)
Arguments
data |
Data.frame with data. |
vars |
Character vector with variables of |
valueVar |
String with numeric variable of |
Value
Updated data.frame with vars
in
hierarchical format, with extra attributes (in 'metadat'):
'varID': String with column of output containing ID of specific element.
This is a combination from the specifiedvars
, or 'Overall' for the grand total.'varParent': String with column of output containing ID of the parent element
'varLabel': String with column of output containing the label to display.
This is usually the name of the child element.
Author(s)
Laure Cougnaud