File tree Expand file tree Collapse file tree
mimic-iv/concepts/medication Expand file tree Collapse file tree Original file line number Diff line number Diff line change 33-- by Goradia et al. 2020.
44SELECT stay_id, starttime, endtime
55-- calculate the dose
6- , norepinephrine
7- + epinephrine
8- + phenylephrine/ 10
9- + dopamine/ 100
6+ , ROUND(COALESCE( norepinephrine, 0 )
7+ + COALESCE( epinephrine, 0 )
8+ + COALESCE( phenylephrine/ 10 , 0 )
9+ + COALESCE( dopamine/ 100 , 0 )
1010 -- + metaraminol/8 -- metaraminol not used in BIDMC
11- + vasopressin* 2 .5
11+ + COALESCE(vasopressin* 2 .5 , 0 )
12+ -- angotensin_ii*10 -- angitensin ii rarely used, currently not incorporated
13+ -- (it could be included due to norepinephrine sparing effects)
14+ , 4 ) AS norepinephrine_equivalent_dose
1215 -- angotensin_ii*10 -- angitensin ii rarely used, currently not incorporated
1316 -- (it could be included due to norepinephrine sparing effects)
1417 AS norepinephrine_equivalent_dose
You can’t perform that action at this time.
0 commit comments