I am interested in variables that describe possible heterogeneity in the data. One such variable is cgid (caregiver-id) in table chartevents MIMIC III:
CGID is the identifier for the caregiver who validated the given measurement
(ref).
I would like to add a concept that returns, for each hour where at least one measurement was entered into the system, the list of caregivers involved. I tried the following:
"caregiver": {
"category": "misc",
"sources": {
"mimic": {
"table": "chartevents",
"val_var": "cgid",
"target": "ts_tbl",
"class": "col_itm"
}
}
},
However, this raises
Error in eval(assertion, env) :
argument "ids" is missing, with no default
How should I go about adding such a concept?
I am interested in variables that describe possible heterogeneity in the data. One such variable is
cgid(caregiver-id) in tablecharteventsMIMIC III:(ref).
I would like to add a concept that returns, for each hour where at least one measurement was entered into the system, the list of caregivers involved. I tried the following:
However, this raises
How should I go about adding such a concept?