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
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 BYcount(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 conceptSELECT note_source_value, count(1)
FROM note
GROUP by note_source_value ORDER BYcount(1) descLIMIT10;