Skip to content

Commit

Permalink
Merge pull request #1497 from yongfanbeta/master
Browse files Browse the repository at this point in the history
fix issue 1279 - incorrect vasopressin calculation in NED
  • Loading branch information
alistairewj authored Mar 23, 2023
2 parents 6b5b155 + 3887976 commit 8ca183d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ SELECT stay_id, starttime, endtime
+ COALESCE(phenylephrine / 10, 0)
+ COALESCE(dopamine / 100, 0)
-- + metaraminol/8 -- metaraminol not used in BIDMC
+ COALESCE(vasopressin * 2.5, 0)
+ COALESCE(vasopressin * 2.5/60, 0)
-- angiotensin_ii*10 -- angiotensin ii rarely used, though
-- it could be included due to norepinephrine sparing effects
AS NUMERIC), 4) AS norepinephrine_equivalent_dose
Expand Down

0 comments on commit 8ca183d

Please sign in to comment.