MIT-LCP / mimic-code

MIMIC Code Repository: Code shared by the research community for the MIMIC family of databases
https://mimic.mit.edu
MIT License
2.41k stars 1.5k forks source link

SOFA score MIMIC-III vs MIMIC-IV #1633

Closed heisenbug-1 closed 10 months ago

heisenbug-1 commented 10 months ago

Hello! In my my understanding, the SOFA score is calculated for every hours in MIMIC-IV, however in MIMIC-III it is only calculated of the first day. Is there a reason for this?

alistairewj commented 10 months ago

Not really a strong reason but it's nicer to calculate SOFA on a rolling basis and then subselect it to the first 24 hours to get the first day SOFA. It makes it easy to get day 1, day 2, day 3, etc, without repeating code.

heisenbug-1 commented 10 months ago

Understandable, thank you!