eGFR_adult_SCr | R Documentation |
Using KDIGO 2012 Clinical Practice Guideline for the Evaluation and Management of Chronic Kidney Disease Volume 3 | Issue 1 | January 2013
eGFR_adult_SCr(...)
## S3 method for class 'data.frame'
eGFR_adult_SCr(.data, SCr, Age, male, black, ...)
## S3 method for class 'units'
eGFR_adult_SCr(SCr, Age, male, black, ...)
## S3 method for class 'numeric'
eGFR_adult_SCr(SCr, Age, male, black, ...)
... |
Further optional arguments |
.data |
(data.frame) A data.frame, optional |
SCr |
Serum creatinine
column name, or vector of units or numeric if |
Age |
Age of patient
column name, or vector of units or numeric if |
male |
Male or not
column name, or vector of logical (TRUE/FALSE) if |
black |
Black race or not
column name, or vector of logical (TRUE/FALSE) if |
See https://kdigo.org/guidelines/ckd-evaluation-and-management/ for more details
Estimated GFR of the same type provided (numeric or units)
eGFR_adult_SCr(eGFR_pt_data,
SCr = "SCr_", Age = "Age_", male = "male_", black = "black_"
)
eGFR_pt_data %>%
dplyr::mutate(eGFR = eGFR_adult_SCr(
SCr = SCr_, Age = Age_, male = male_, black = black_
))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.