we are stuck on observation table and need some help in what kind of data should we consider it as an observation.
in ETL Conventions from the book of OHDSI for observation table:
“Records whose Source Values map to any domain besides Condition, Procedure, Drug, Measurement or Device should be stored in the Observation table.”
what it means?
we have below tables:
- Lab table contains Lab tests information (test name,test date,results,unit …)
some examples.
“Basic Screen( P2), Random” “2020-05-06” “137” “mmol/L”
“Urinalysis & Microscopy ( Urina Analysis)” “2020-05-06” “>=1.0” “mg/dL”
“Urinalysis & Microscopy ( Urina Analysis)” “2020-05-06” “Negative” “mg/dL”
“Urinalysis & Microscopy (Urina Analysis)” “2019-09-15” “Light Yellow”
- Diagnosis table contains (code,name,voc_id,date)
some examples.
“E789” “Dyslipidemia” “D00006410” “1/27/2016”
“I10” “Essential hypertension” “D00009539” “1/27/2016”
“E119” “Type 2 diabetes mellitus without complication” “D00005982” “9/18/2016”
“E789” “Dyslipidemia” “D00006410” “1/27/2016”
- medication table contains medicine information (name,date,type,days,quantity,…)
some examples.
“APIXN5” "Apixaban 5mg Film-coated Tablet (Eliquis) " “2021-01-10” “1” “Oral” “5.0” “10.0” “1.0” “mg”
“BTMVL” “Betamethasone Valerate 0.1% Scalp Lotion, 30 mL” “2020-12-15” “1” “External” “30”
“GNS1I3” “Granisetron HCl 1 mg/mL Injection, 3 mL Amp (LX)” “2021-08-03” “1” “Injectable” “3.0” “3.0” “1.0” “mg”
- Surgery table contains surgery information (code,name,icd9,date,dept_code)
some examples.
“O00006204” “Ureteroscopic lithotripsy” “56” “2017-09-11” “UR”
“O00050148” “Repair of aneurysm in extremity” “2017-10-23” “IMN”
“O00006910” “Diagnostic hysteroscopy” “68.12” “2019-03-18” “OBGYN”
are you find any thing here belong to observation or related to?
if you can give an example of how to deal with observation it will be useful.
thanks