get_valueList_asDf.Rd
A value list is another name for the values of the entities within a clustering entity. This function retrieves all those values and returns them in a data frame.
get_valueList_asDf_fromRxsTree(
x,
requiredFields = NULL,
flattenVectorsInDf = TRUE,
pathString_regex_select = NULL,
pathString_regex_flatten = NULL,
pathString_regex_explode = NULL,
fieldname_regex_alwaysFlatten = NULL,
silent = metabefor::opts$get("silent")
)
get_valueList_asDf(
x,
requiredFields = NULL,
pathString_regex_select = NULL,
flattenVectorsInDf = TRUE,
pathString_regex_flatten = NULL,
pathString_regex_explode = NULL,
fieldname_regex_alwaysFlatten = NULL,
silent = metabefor::opts$get("silent")
)
The Rxs tree, list of trees, or full Rxs project
Fields that have to exist in the target entities (otherwise, the entity is excluded)
The default action to apply for values not matching
one of pathString_regex_flatten
and pathString_regex_explode
: to flatten
by default, pass TRUE
; to explode by default, pass FALSE
.
Regex that the target entities' path strings have to match (otherwise, the entity is excluded)
Regular expressions
matched against each entity node's path string (i.e. its path from the root,
delimited by slashes). Vectors in entity nodes matching
pathString_regex_flatten
will be flattened into a single character
string value; vectors in entity nodes matching pathString_regex_explode
will be exploded into multiple rows.
A regular expression to force flattening of fields regardless of matching to other regular expressions.
Whether to be quiet or chatty.
A dataframe