3

I wonder whether APACHE scores are available somewhere in MIMIC-III.

There doesn't seem to be any widely used APACHE ITEMIDs in the table CHARTEVENTS:

 SELECT LABEL,  COUNT(*) cnt
 FROM  mimiciii.CHARTEVENTS,
 mimiciii.d_items
  WHERE LOWER(d_items.LABEL) LIKE '%apache%'
  and CHARTEVENTS.itemid = d_items.itemid
   GROUP BY d_items.LABEL
 ORDER BY cnt DESC ;

enter image description here

Franck Dernoncourt
  • 7,780
  • 9
  • 39
  • 86

1 Answers1

2

"Acute Physiology and Chronic Health Evaluation" (APACHE) scores are rarely recorded by caregivers, so they are not well documented in the core MIMIC dataset.

Several APACHE-related itemids appear in the d_items table, as shown in the question, but there are few associated values in the chartevents table.

APACHE scores also appear as free text in the NOTEEVENTS table (for example, "On admission, APACHE II score of 10..."), but again infrequently.

The MIMIC research community is developing code to calculate scores retrospectively which will be shared in the MIMIC Code Repository.

tomp
  • 1,446
  • 8
  • 19