Skip to content

Commit 6eb9ef2

Browse files
fix(mimic-iv): exclude non-positive values in cardiac_marker
Align with other lab measurement concepts that require valuenum > 0. Co-authored-by: Cursor <cursoragent@cursor.com>
1 parent 3a914fc commit 6eb9ef2

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

mimic-iv/concepts/measurement/cardiac_marker.sql

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,6 @@ WHERE le.itemid IN
1818
, 50963 -- N-terminal (NT)-pro hormone BNP (NT-proBNP)
1919
)
2020
AND valuenum IS NOT NULL
21+
AND valuenum > 0
2122
GROUP BY le.specimen_id
2223
;

0 commit comments

Comments
 (0)