Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

Link to CommonDataModel

Source Tables (mimic)

  • source category goes into value_source_value

Mapping used

Examples

explanation of the note_type_concept_id

SELECT concept_name, note_type_concept_id, count(1)
FROM note
JOIN concept ON note_type_concept_id = concept_id
GROUP BY concept_name, note_type_concept_id ORDER BY count(1) desc;
concept_name note_type_concept_id count
Nursing report 44814644 2326
Radiology report 44814641 990
Pathology report 44814642 482
No matching concept 0 476
Discharge summary 44814637 123
Ancillary report 44814643 38
Inpatient note 44814639 11

explanation of section_source_value

-- = type of note in non standard mimic concept
SELECT note_source_value, count(1)
FROM note
GROUP by note_source_value ORDER BY count(1) desc
LIMIT 10;
note_source_value count
Nursing/other 1757
Radiology 990
Nursing 569
Physician 402
ECG 402
Discharge summary 123
Echo 80
Respiratory 71
Nutrition 20
General 11