- Print
- DarkLight
- PDF
Article summary
Did you find this summary helpful?
Thank you for your feedback
categorical
creates: categorical collection or variable
A categorical
data function directly references a categorical collection
or variable
in the data model, It can optionally refer to all categorical collections.
attribute | type | description | options |
---|---|---|---|
collection | string | the name of a categorical collection | any categorical collection |
variable | string | the name of a variable within the specified collection | any variable within a categorical collection |
This data function represents all categorical collections:
{
"data_function_type": "categorical"
}
This data function represents a categorical collection and all of the variables therein:
{
"data_function_type": "categorical",
"collection": "collection_name"
}
This data function represents a categorical collection and a specific variable within that collection.
{
"data_function_type": "categorical",
"collection": "collection_name",
"variable": "variable_name"
}
Was this article helpful?