We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 16155c6 commit c41aa36Copy full SHA for c41aa36
1 file changed
mimic-iii/concepts/severityscores/sirs.sql
@@ -88,7 +88,7 @@ left join `physionet-data.mimiciii_derived.labs_first_day` l
88
, case
89
when wbc_min < 4.0 then 1
90
when wbc_max > 12.0 then 1
91
- when bands_max > 10 then 1-- > 10% immature neurophils (band forms)
+ when bands_max > 10 then 1 -- > 10% immature neutrophils (band forms)
92
when coalesce(wbc_min, bands_max) is null then null
93
else 0
94
end as wbc_score
@@ -97,7 +97,7 @@ left join `physionet-data.mimiciii_derived.labs_first_day` l
97
)
98
select
99
ie.subject_id, ie.hadm_id, ie.icustay_id
100
- -- Combine all the scores to get SOFA
+ -- Combine all component scores to get SIRS
101
-- Impute 0 if the score is missing
102
, coalesce(temp_score,0)
103
+ coalesce(heartrate_score,0)
0 commit comments