Calculate eGFR
egfr_ckdepi(creatinine, age, female, aa, label = "eGFR, mL/min/1.73m²")
egfr_mdrd(creatinine, age, female, aa, label = "eGFR, mL/min/1.73m²")
serum creatinine level in mg/dL
patient age
logical indicating whether patient is female
logical indicating whether patient is African-American
label that will be applied to result,
e.g. attr("label", 'eGFR, mL/min/1.73m\U00B2')
numeric vector
egfr_mdrd(creatinine = 1.2, age = 60, female = TRUE, aa = TRUE)
#> [1] 55.53985
#> attr(,"label")
#> [1] "eGFR, mL/min/1.73m²"
egfr_ckdepi(creatinine = 1.2, age = 60, female = TRUE, aa = TRUE)
#> [1] 56.88511
#> attr(,"label")
#> [1] "eGFR, mL/min/1.73m²"