- Print
- DarkLight
- PDF
Article summary
Did you find this summary helpful?
Thank you for your feedback
background
usage: common - datatype: object
The background
attribute of a Tag.script specifies the set of entities that comprise the background of the analysis. Only those entities declared in the background
attribute will be included in the analysis - including all other Tag.script attributes like focus
and analysis_variables
. If the background
attribute is not defined, it will default to all entities in Tag.cortex. The simple form of the background
attribute is a single categorical variable object.
"background": {
"variable_type": "categorical", //A categorical variable object
"collection": "cccc", //"cccc" is a valid categorical collection name in Tag.cortex
"variable": "vvvv" //"vvvv" is a valid variable name in collection "cccc"
}
Alternatively, the background attribute can be any categorical variable object that compiles to a single categorical variable, e.g. "categorical-compound".
"background": {
"variable_type": "categorical-compound",
"operator": "oooo", //"AND" for intersection, "OR" for union
"criteria": [
{...}, //Two or more categorical variable objects
{...},
...
]
}
Was this article helpful?