Skip to content

Commit c41aa36

Browse files
fix(mimic-iii): correct SIRS score comment typos in sirs.sql
Co-authored-by: Cursor <cursoragent@cursor.com>
1 parent 16155c6 commit c41aa36

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • mimic-iii/concepts/severityscores

mimic-iii/concepts/severityscores/sirs.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ left join `physionet-data.mimiciii_derived.labs_first_day` l
8888
, case
8989
when wbc_min < 4.0 then 1
9090
when wbc_max > 12.0 then 1
91-
when bands_max > 10 then 1-- > 10% immature neurophils (band forms)
91+
when bands_max > 10 then 1 -- > 10% immature neutrophils (band forms)
9292
when coalesce(wbc_min, bands_max) is null then null
9393
else 0
9494
end as wbc_score
@@ -97,7 +97,7 @@ left join `physionet-data.mimiciii_derived.labs_first_day` l
9797
)
9898
select
9999
ie.subject_id, ie.hadm_id, ie.icustay_id
100-
-- Combine all the scores to get SOFA
100+
-- Combine all component scores to get SIRS
101101
-- Impute 0 if the score is missing
102102
, coalesce(temp_score,0)
103103
+ coalesce(heartrate_score,0)

0 commit comments

Comments
 (0)