View source: R/calculate_creatclearance_cg.R
calculate_creatclearance_cg | R Documentation |
Estimates Creatinine Clearance based on age, sex, weight, and creatinine. Note that other estimating equations estimate GFR.
calculate_creatclearance_cg(age, sex, weight, creatinine, weight_units = "kg")
age |
Age, in years |
sex |
Sex |
weight |
Weight, in kg |
creatinine |
Serum creatinine, in mg/dL |
a numeric vector with eGFR (ml/min/1.73m^2)
calculate_creatclearance_cg(age=70, sex="MAle", weight=70, creatinine=1.0) # 68.05556
calculate_creatclearance_cg(age=70, sex="ma", weight=70, creatinine=1.0) # 57.84722
calculate_creatclearance_cg(age=50, sex="Male", weight=70, creatinine=1.0) # 87.5
calculate_creatclearance_cg(age=50, sex="F", weight=70, creatinine=1.0) # 74.375
calculate_creatclearance_cg(age=50, sex="fe", weight=154, creatinine=1.0, weight_units="lbs") # 74.375
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.