nephro-package: Biostatistics utilities for nephrology

Description Details Author(s) References Examples

Description

This package contains a set of tools for the estimation of renal function. Renal function is assessed by means of the Glomerular Filtration Rate (GFR) which can be estimated using different biomarkers. The most commonly used ones are serum or plasma creatinine and cystatin C. Included in this package are the following GFR estimating functions: the Modification of Diet in Renal Disease (MDRD) study equation based on four (MDRD4) or six (MDRD6) parameters (see Levey 1999, 2006); the CKD-Epi equations for creatinine (CKDEpi.creat), cystatin C (CKDEpi.cys), and a combination of creatinine and cystatin C (CKDEpi.creat.cys) (see Inker 2012); the three equations proposed by Stevens 2008 based on cystatin C only (Stevens.cys1), age- and sex-weighted cystatin C (Stevens.cys2), and a combination of cystatin C and creatinine (Stevens.creat.cys); the classic Cockroft and Gault 1976 equation for creatinine clearance estimation (CG); and the recent equation by Virga (2007) (Virga). A comparative description of several functions included in the package can be found in Pattaro (2013). An extensive literature does exist that compares the methods described.

Details

Package: nephro
Type: Package
Version: 1.1
Date: 2015-01-31
License: GPLv3

Author(s)

Cristian Pattaro <cristian.pattaro@eurac.edu>

Acknowledgements: Max Plischke (contributed examples and bug reporting)

References

Citing this package:
- Pattaro C, Riegler P, Stifter G, Modenese M, Minelli C, Pramstaller PP. Estimating the glomerular filtration rate in the general population using different equations: effects on classification and association. Nephron Clin Pract 2013; 123(1-2):102-11.

Formulas:
- Cockroft DW, Gault MH. Prediction of creatinine clearance from serum creatinine. Nephron 1976; 16: 31-41.
- Inker LA, et al. Estimating glomerular filtration rate from serum creatinine and cystatin C. N Engl J Med 2012; 367: 20-9.
- Levey AS, et al. A more accurate method to estimate glomerular filtration rate from serum creatinine: a new prediction equation. Modification of Diet in Renal Disease Study Group. Ann Intern Med. 1999; 130(6): 461-70.
- Levey AS, et al. Using standardized serum creatinine values in the modification of diet in renal disease study equation for estimating glomerular filtration rate. Ann Intern Med. 2006; 145: 247-54.
- Stevens LA, et al. Estimating GFR using serum cystatin C alone and in combination with serum creatinine: a pooled analysis of 3,418 individuals with CKD. Am J Kidney Dis 2008; 51: 395-406.
- Virga G, et al. A new equation for estimating renal function using age, body weight and serum creatinine. Nephron Clin Pract 2007; 105: c43-53.

On IDMS calibration:
- Levey AS, et al. Expressing the Modification of Diet in Renal Disease Study equation for estimating glomerular filtration rate with standardized serum creatinine values. Clin Chem 2007; 53:766-72.
- Matsushita K, et al. Comparison of risk prediction using the CKD-EPI equation and the MDRD study equation for estimated glomerular filtration rate. J Am Med Assoc 2012; 307:1941-51.
- Skali H, et al. Prognostic assessment of estimated glomerular filtration rate by the new Chronic Kidney Disease Epidemiology Collaboration equation in comparison with the Modification of Diet in Renal Disease Study equation. Am Heart J 2011; 162:548-54.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# Comparison between different equations

creat <- c(0.8, 0.9, 1.0, 1.1, 1.2, 1.3)
cyst  <- c(1.1, 0.95, 1.1, 1.0, 1.3, 1.2)
sex <- c(1, 1, 1, 0, 0, 0)
age <- c(60, 65, 43, 82, 71, 55)
ethn <- round(runif(6))
wt <- c(70, 80, 60, 55, 87, 71)

eGFR <- data.frame(creat, cyst)
eGFR$MDRD4 <- MDRD4(creat, sex, age, ethn, 'IDMS') 
eGFR$CKDEpi.creat <- CKDEpi.creat(creat, sex, age, ethn) 
eGFR$CKDEpi.cys <- CKDEpi.cys(cyst, sex, age)
eGFR$CKDEpi.creat.cys <- CKDEpi.creat.cys(creat, cyst, sex, age, ethn)
eGFR$Stevens.cys1 <- Stevens.cys1(cyst)
eGFR$Stevens.cys2 <- Stevens.cys2(cyst, sex, age, ethn)
eGFR$Stevens.creat.cys <- Stevens.creat.cys(creat, cyst, sex, age, ethn)
eGFR$cg <- CG(creat, sex, age, wt)
eGFR$virga <- Virga(creat, sex, age, wt)

pairs(eGFR[,3:11])


# For use with non-IDMS calibrated creatinine 
# several authors (see references) suggested
# a 5% creatinine adjustment

creat <- c(0.8, 0.9, 1.0, 1.1, 1.2, 1.3)
sex <- c(1, 1, 1, 0, 0, 0)
age <- c(60, 65, 43, 82, 71, 55)
ethn <- round(runif(6))
gfr <- CKDEpi.creat(0.95*creat, sex, age, ethn) 

Example output



nephro documentation built on May 2, 2019, 4:47 p.m.