calc_aki_stage | R Documentation |
Calculate AKI class based on serum creatinine values over time, using various methods for children (pRIFLE) and adults (RIFLE, kDIGO)
calc_aki_stage(
scr = NULL,
times = NULL,
method = "kdigo",
baseline_scr = "median",
baseline_egfr = NULL,
first_dose_time = NULL,
age = NULL,
egfr = NULL,
egfr_method = NULL,
force_numeric = FALSE,
override_prifle_baseline = FALSE,
verbose = TRUE,
return_object = TRUE,
...
)
scr |
serum creatinine in mg/dL. Use |
times |
creatinine sample times in hours |
method |
classification method, one of |
baseline_scr |
baseline serum creatinine, required for |
baseline_egfr |
baseline eGFR, required for |
first_dose_time |
time in hours of first dose relative to sCr value, used for calculate baseline serum creatinine in |
age |
age in years, needed when eGFR is used in the classification method |
egfr |
eGFR in ml/min/1.73m^2. Optional, can also be calcualted if |
egfr_method |
eGFR calculation method, used by |
force_numeric |
keep stage numeric (1, 2, or 3), instead of e.g. "R", "I", "F" as in RIFLE. Default |
override_prifle_baseline |
by default, |
verbose |
verbose ( |
return_object |
return object with detailed data (default |
... |
arguments passed on to |
pRIFLE: Ackan-Arikan et al. "Modified RIFLE criteria in critically ill children with acute kidney injury." Kidney Int. (2007)
RIFLE: Bellomo et al. "Acute renal failure - definition, outcome measures, animal models, fluid therapy and information technology needs: the Second International Consensus Conference of the Acute Dialysis Quality Initiative (ADQI) Group." Critical Care. (2004)
KDIGO: Khwaja. "KDIGO clinical practice guidelines for acute kidney injury." Nephron Clinical Practice. (2012)
pRIFLE baseline eGFR: Soler et al. "pRIFLE (Pediatric Risk, Injury, Failure, Loss, End Stage Renal Disease) score identifies Acute Kidney Injury and predicts mortality in critically ill children : a prospective study." Pediatric Critical Care Medicine. (2014)
calc_aki_stage(
scr = c(0.7, 0.9, 1.8, 1.5),
t = c(0, 40, 100, 130),
age = 50, weight = 60,
height = 170, sex = "female")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.