A vectorised formula to calculate estimate glomerular filtration rate in children using the bedside Schwartz formula. By default this uses
serum creatinine in <U+00B5>mol/l but this can be changed to mg/dl by setting the optional units parameter to "US".
Usage
schwartz(creat, height, units = "SI")
Arguments
creat
numeric vector of creatinine levels in <U+00B5>mol/l (or mg/dl if units = "US")
height
numeric vector of heights in cm
units
non-vectorised optional parameter for creatinine unit ("SI" for <U+00B5>mol/l (default), "US" for mg/dl)
Value
numeric vector of eGFR values
Details
Reference: Schwartz GJ, Munoz A, Schneider MF et al. New equations to estimate GFR in children
with CKD. J Am Soc Nephrol 2009; 20(3):629-637.
# NOT RUN {# calculate using creatinine in <U+00B5>mol/lschwartz(creat = 64, height = 101)
# calculate using mg/dlschwartz(creat = 0.7, height = 101, units = "US")
# }