Skip to content

MIMIC-IV KDIGO AKI Stage 3 is wrongly defined #1357

Open
@starmpcc

Description

@starmpcc

Hello.

and (cr.creat_low_past_48hr <= 3.7 OR cr.creat >= (1.5*cr.creat_low_past_7day))

In KDIGO AKI criteria(link, page 21), AKI Stage 3 is defined by satisfying both of

  1. sCR >=4.0
  2. 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

Metadata

Metadata

Assignees

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions