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.4k stars 1.5k forks source link

Classification of MIMIC-IV ECGs #1759

Open sanketahegde opened 1 week ago

sanketahegde commented 1 week ago

Prerequisites

Description

Description of the issue, including:

I am currently working with MIMIC-IV ECGs as part of one of my research project. To continue using MIMIC-IV ECGs, I first have to classify the ECGs into different disease categories based on their diagnosis.

I see that there are multiple report columns in _machinemeasurements.csv file. I am currently unsure about how to separate the ECGs into healthy (normal sinus rhythm) and unhealthy or other disease conditions. Since, there are multiple report columns and each column have different diagnosis statements, this makes it difficult to get the normal ECGs.

Any suggestions or feedback is appreciated!! Looking forward to get some answers.

Thank you!, Sanketa

sanketahegde commented 1 week ago

@alistairewj

briangow commented 1 week ago

@sanketahegde , the data provided by the hospital had multiple report columns - we are preserving this structure in the table your are referring to.

I'm not a clinician but a conservative approach could be to look for a row that says "Sinus rhythm" and "Normal ECG" in any of the columns, without any other text / entries in the report columns.

sanketahegde commented 1 week ago

@briangow Thank you for the reply. I was thinking of doing what you mentioned but getting a clarification from your side helps.