Skip to content

Commit 3a3662f

Browse files
committed
fix dataset in reference to weight_durations table, ref #1179
1 parent 3e7e5cb commit 3a3662f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

mimic-iii/concepts/durations/epinephrine_dose.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ with vasocv1 as
2424
, max(case when itemid in (30044,30119,30309) then amount else null end) as vaso_amount
2525

2626
FROM `physionet-data.mimiciii_clinical.inputevents_cv` cv
27-
left join `physionet-data.mimiciii_clinical.weight_durations` wd
27+
left join `physionet-data.mimiciii_derived.weight_durations` wd
2828
on cv.icustay_id = wd.icustay_id
2929
and cv.charttime between wd.starttime and wd.endtime
3030
where itemid in

mimic-iii/concepts/durations/norepinephrine_dose.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ with vasocv1 as
2424
, max(case when itemid in (30047,30120) then amount else null end) as vaso_amount
2525

2626
FROM `physionet-data.mimiciii_clinical.inputevents_cv` cv
27-
left join `physionet-data.mimiciii_clinical.weight_durations` wd
27+
left join `physionet-data.mimiciii_derived.weight_durations` wd
2828
on cv.icustay_id = wd.icustay_id
2929
and cv.charttime between wd.starttime and wd.endtime
3030
where itemid in (30047,30120) -- norepinephrine

0 commit comments

Comments
 (0)