Open
Description
Hello.
In KDIGO AKI criteria(link, page 21), AKI Stage 3 is defined by satisfying both of
- sCR >=4.0
- sCR increment >=0.3 within 48h or sCR baseline * 1.5
However, the logic of above code was defined by fixed number 3.7.
I think this it was defined wrongly, so should be changed onto
and (cr.creat >= (cr.creat_low_past_48hr+0.3) OR cr.creat >= (1.5*cr.creat_low_past_7day))
Thanks you