Difference between revisions of "Data Description Laboratory"

From SICDB Doc
Jump to navigation Jump to search
(Created page with " {| class="wikitable" |+ Caption text |- ! Name !! Type !! Description !! Comment |- | id || Integer || Primary Key || |- | CaseID || Integer || Case identifier || |- | LaboratoryID || Reference || || |- | Offset || Integer || Time in seconds after admission || |- | LaboratoryValue || Float || Value || Unity of measurement can be found in d_references |- | LaboratoryType || Reference || Used for special laboratory types, i.e. arterial blood gas. Relates to d_...")
 
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
The laboratory table contains all available lab data, in many cases including the pre-admission labs.
Like all "Reference" fields additional data like name and unit of measurement is found in d_references. See [[SQL Examples]] to learn how to connect them using a relational database system.
To simplify lookup for labs of previous stays PatientID was added to this table.


{| class="wikitable"
{| class="wikitable"
|+ Caption text
|+ laboratory.csv.gz
|-
|-
! Name !! Type !! Description !! Comment
! Name !! Type !! Description !! Comment
Line 9: Line 15:
| CaseID || Integer || Case identifier ||  
| CaseID || Integer || Case identifier ||  
|-  
|-  
| LaboratoryID || Reference ||  ||  
| PatientID || Integer || Patient identifier ||
|-
| DrugID || Reference ||  ||  
|-  
|-  
| Offset || Integer || Time in seconds after admission ||  
| Offset || Integer || Time in seconds after admission ||  
Line 15: Line 23:
| LaboratoryValue || Float ||  Value || Unity of measurement can be found in d_references
| LaboratoryValue || Float ||  Value || Unity of measurement can be found in d_references
|-  
|-  
| LaboratoryType || Reference || Used for special laboratory types, i.e. arterial blood gas. Relates to d_references.ReferenceGlobalID ||  
| LaboratoryType || Reference || Used for special laboratory types, i.e. arterial blood gas. ||  
|}
|}

Latest revision as of 16:51, 3 November 2022

The laboratory table contains all available lab data, in many cases including the pre-admission labs.

Like all "Reference" fields additional data like name and unit of measurement is found in d_references. See SQL Examples to learn how to connect them using a relational database system.

To simplify lookup for labs of previous stays PatientID was added to this table.


laboratory.csv.gz
Name Type Description Comment
id Integer Primary Key
CaseID Integer Case identifier
PatientID Integer Patient identifier
DrugID Reference
Offset Integer Time in seconds after admission
LaboratoryValue Float Value Unity of measurement can be found in d_references
LaboratoryType Reference Used for special laboratory types, i.e. arterial blood gas.