You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
it maps SNOMED codes to itemid in the mimic.procedureevents_mv table
No idea how the mapping was made by google
Examples
Explanation of procedure_type_concept_id
SELECT concept_name, concept_id, count(1)
FROM procedure_occurrence
JOIN concept ON concept_id = procedure_type_concept_id
GROUP BY concept_name, concept_id ORDER BYcount(1) DESC;
concept_name
concept_id
count
Hospitalization Cost Record
257
573146
EHR order list entry
38000275
250284
Procedure recorded as diagnostic code
38003622
240095
Some interesting record procedures
SELECT procedure_source_value, count(1)
FROM procedure_occurrence
WHERE procedure_type_concept_id =38000275GROUP BY procedure_source_value ORDER BYcount(1) DESCLIMIT10;
procedure_source_value
count
Chest X-Ray
31953
20 Gauge
27631
18 Gauge
20058
EKG
13659
Arterial Line
12374
Invasive Ventilation
10442
Blood Cultured
9873
CT scan
8510
Extubation
7909
Multi Lumen
7664
SELECT concept_name, count(1)
FROM procedure_occurrence
JOIN concept ON concept_id = procedure_source_concept_id
WHERE procedure_type_concept_id =38003622GROUP BY concept_name ORDER BYcount(1) DESCLIMIT10;
concept_name
count
Venous catheterization, not elsewhere classified
14731
Insertion of endotracheal tube
10333
Enteral infusion of concentrated nutritional substances
9300
Continuous invasive mechanical ventilation for less than 96 consecutive hours
9100
Transfusion of packed cells
7244
Extracorporeal circulation auxiliary to open heart surgery
6838
Continuous invasive mechanical ventilation for 96 consecutive hours or more
6048
Prophylactic administration of vaccine against other diseases
5842
Coronary arteriography using two catheters
5337
Arterial catheterization
4737
SELECT procedure_source_value, count(1)
FROM procedure_occurrence
WHERE procedure_type_concept_id =257GROUP BY procedure_source_value ORDER BYcount(1) DESCLIMIT10;