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²")

Arguments

creatinine

serum creatinine level in mg/dL

age

patient age

female

logical indicating whether patient is female

aa

logical indicating whether patient is African-American

label

label that will be applied to result, e.g. attr("label", 'eGFR, mL/min/1.73m\U00B2')

Value

numeric vector

Examples

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²"