The transplantr package includes vectorised functions to calculate a number of different deceased donor kidney risk indices which are based on Cox models of transplant survival and can be used to audit or risk adjust transplant outcome data.
The models included in version 0.1.0 are:
ukkdri()
watson_ukkdri()
ukkrri()
uskdri()
raw_epts()
The US risk index uses donor creatinine as a parameter, and the
uskdri()
function in this package uses creatinine measured
in mcmol/l as the default for all functions, but creatinine can be
entered in mg/dl either by setting the optional units
parameter to “SI” or by calling the wrapper function
uskdri_US()
instead. All of the functions in transplantr
using creatinine or bilirubin use units in the same way - for mg/dl
either use units == "US"
or call the ..._US()
wrapper function.
To start, load the transplantr library and I would also recommend using dplyr to incorporate the results of these functions into your datasets:
The current UK Kidney Donor and Recipient Risk Indices(1) are based on transplant and recipient survival data from the UK National Transplant Database and have been incorporated into the new deceased donor kidney matching scheme launched in September 2019, which aims to match expected transplant and recipient survival (although a number of other factors are also used in the algorithm).
The ukkdri()
function calculates the donor risk and uses
the following parameters:
Parameter | Description | Values |
---|---|---|
age | donor age in years | numeric vector |
height | donor height in cm | numeric vector |
htn | donor history of hypertension | numeric vector of values of 1 (yes) or 0 (no) |
sex | donor sex | character vector of values of “F” or “M” |
cmv | whether donor is CMV seropositive | numeric vector of values of 1 (yes) or 0 (no) |
gfr | donor eGFR in ml/min | numeric vector |
hdays | length of donor hospital stay | numeric vector |
Using vectors of 1 and 0 is more efficient than TRUE/FALSE or “Male”/“Female”, but if your dataset uses these values instead, it is easy enough to convert them with the dplyr::mutate() verb:
# load dataset
data("kidney.donors")
kidney.donors
#> # A tibble: 4 × 7
#> Donor.Age Donor.Height Donor.Hypertension Donor.Sex Donor.CMV Donor.GFR
#> <dbl> <dbl> <lgl> <chr> <chr> <dbl>
#> 1 34 165 TRUE F Neg 91
#> 2 51 177 FALSE M Pos 74
#> 3 65 154 TRUE F Pos 63
#> 4 78 183 FALSE M Pos 54
#> # ℹ 1 more variable: Donor.Hospital_Stay <dbl>
# change required variables to 1/0
kidney.donors2 = kidney.donors %>%
mutate(Donor.Hypertension = if_else(Donor.Hypertension == TRUE, 1, 0),
Donor.Sex = if_else(Donor.Sex == "F", 1, 0),
Donor.CMV = if_else(Donor.CMV == "Pos", 1, 0))
# view updated dataset
kidney.donors2
#> # A tibble: 4 × 7
#> Donor.Age Donor.Height Donor.Hypertension Donor.Sex Donor.CMV Donor.GFR
#> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl>
#> 1 34 165 1 1 0 91
#> 2 51 177 0 0 1 74
#> 3 65 154 1 1 1 63
#> 4 78 183 0 0 1 54
#> # ℹ 1 more variable: Donor.Hospital_Stay <dbl>
The result can be converted into quartiles using the
ukkdri_q()
function. This takes a numeric vector of donor
risk index values as its input and returns a vector of quartiles. This
is reported a 1-4 by default, but can be prefixed with a “D” to match
the NHSBT ODT nomenclature if the optional prefix
parameter
is set to TRUE, and can be reported as a factor vector by setting
fct
to TRUE.
Generating the results is also easy to do with dplyr:
# calculate UKKDRI
kidney.donors3 = kidney.donors2 %>%
mutate(UKKDRI = ukkdri(age = Donor.Age, height = Donor.Height, htn = Donor.Hypertension,
sex = Donor.Sex, cmv = Donor.CMV, gfr = Donor.GFR,
hdays = Donor.Hospital_Stay),
UKKDRI.Quartile = ukkdri_q(UKKDRI, prefix = TRUE, fct = TRUE))
# display results (with selected variables)
kidney.donors3 %>%
select(Donor.Age, Donor.GFR, UKKDRI, UKKDRI.Quartile)
#> # A tibble: 4 × 4
#> Donor.Age Donor.GFR UKKDRI UKKDRI.Quartile
#> <dbl> <dbl> <dbl> <fct>
#> 1 34 91 1.00 D2
#> 2 51 74 1.19 D3
#> 3 65 63 2.90 D4
#> 4 78 54 2.15 D4
Although vectorised functions, ukkdri()
and
ukkdri_q()
will also work with single values:
The ukkrri()
function calculates the UK Kidney Recipient
Risk Index using the following parameters:
Parameter | Description | Values |
---|---|---|
age | recipient age in years | numeric vector |
dx | whether recipient on dialysis at time of listing | numeric vector of 1 (yes) and 0 (no) |
wait | waiting time since start of dialysis in days | numeric vector |
dm | whether recipient has diabetes | numeric vector of 1 (yes) and 0 (no) |
Like the donor risk index, the UKKRRI can be converted into quartiles
of risk using the ukkrri_q()
function, which like the
ukkdri_q()
function takes optional parameters to indicate
whether a prefix or factor is wanted in the output.
The easiest way to generate the UKKRRI data column is again to use dplyr::mutate() verb:
The first version of the UK Kidney Donor Risk Index was published by
Watson et al.(2) and based on Cox regression of kidney
transplant survival from the UK National Transplant Registry. It is
simpler than the US KDRI and slightly outperforms the US KDRI when
applied to the UK transpant series. It can be calculated using the
watson_ukkdri()
function, which includes these
variables:
Parameter | Description | Values |
---|---|---|
age | donor age in years | numeric vector |
htn | whether donor has history of hypertension | numeric vector of 1 = yes, 0 = no |
weight | donor weight in kg | numeric vector |
hdays | length of donor hospital stay | numeric vector |
adrenaline | whether donor treated with adrenaline infusion | numeric vector of 1 = yes, 0 = no |
It can be called within a dplyr pipe as above, or as a single calculation:
The US Kidney Donor Risk Index is a longer established risk
stratification tool developed from American registry data, and can be
calculated using the uskdri()
function. The donor’s serum
creatinine is one of the parameters used, and like the other functions
in transplantr the default unit is µmol/l but can be changed to
mg/dl either by setting the units
parameter to
"US
or by calling the uskdri_US()
wrapper
function. The risk index function uses these variables:
Parameter | Description | Values |
---|---|---|
age | donor age in years | numeric vector |
height | donor height in cm | numeric vector |
weight | donor weight in kg | numeric vector |
eth | donor ethnicity | character string vector of “black” or “non-black” |
htn | whether donor has history of hypertension | numeric vector of 1 = yes, 0 = no |
dm | whether donor has diabetes mellitus | numeric vector of 1 = yes, 0 = no |
cva | whether donor cause of death was CVA | numeric vector of 1 = yes, 0 = no |
creat | donor creatinine | numeric vector |
hcv | whether donor has hepatitis C seropositive | numeric vector of 1 = yes, 0 = no |
dcd | whether donor is DCD | numeric vector of 1 = DCD, 0 = DBD |
scaling | OPTN Scaling Factor | single number (defaults to 1) |
units | creatinine units | single string of “SI” for µmol/l or “US” for mg/dl |
The Scaling Factor is the median KDRI for kidney donors in the USA in
the previous year, and is published each year on the OPTN
website, together with a table for converting KDRI to KDPI, which
gives a percentile of risk. For 2019 the scaling factor is approximately
1.2507. This normalises the donor risk within each year, but I think it
obscures inter-year comparisons. The scaling
parameter
defaults to 1 so can be left out when a non-scaled KDRI is desired.
As a vectorised function, this works well when calculating US KDRI for a large series using a dplyr pipe with code like this:
kidney.donors3us = kidney.donors2 %>%
mutate(USKDRI = uskdri(age = Donor.Age, height = Donor.Height, weight = Donor.Weight,
eth = Donor.Race, htn = Donor.Hypertension, dm = Donor.Diabetes,
cva = Donor.CVA, creat = Donor.Creatinine,
hcv = Donor.HepatitisC, dcd = Donor.Type,
scaling = 1.250697, units = "US"))
The function can also be used for a single case:
# with creatinine in µmol/l (units = "SI" can be omitted)
uskdri(age = 40, height = 170, weight = 80, eth = "non-black", htn = 0, dm = 0,
cva = 0, creat = 120, hcv = 0, dcd = 0, scaling = 1.250697, units = "SI")
#> [1] 0.8649717
# with creatinine in mg/dl and omitting scaling factor
uskdri(age = 40, height = 170, weight = 80, eth = "non-black", htn = 0, dm = 0,
cva = 0, creat = 1.4, hcv = 0, dcd = 0, units = "US")
#> [1] 1.091988
The KDPI is a percentile of risk converted from the US KDRI using the
scaling factor and a lookup table published on the OPTN website each
year. There is a kdpi()
function to calculate the KDPI from
the same parameters used the the uskdri()
function and a
matching kdri_US()
wrapper function for use when donor
creatinine is measured in mg/dl. The transplantr package also has a
kdpi_lookup()
function to convert a KDRI score to KDPI
percentile.
These functions require the dplyr package to be installed. The functions are called in the same way as above, or for a single case:
# with creatinine in µmol/l (units = "SI" can be omitted)
kdpi(age = 40, height = 170, weight = 80, eth = "non-black", htn = 0, dm = 0,
cva = 0, creat = 120, hcv = 0, dcd = 0, scaling = 1.250697, units = "SI")
#> [1] 35
# with creatinine in mg/dl
kdpi_US(age = 40, height = 170, weight = 80, eth = "non-black", htn = 0, dm = 0,
cva = 0, creat = 1.4, hcv = 0, dcd = 0, scaling = 1.250697)
#> [1] 36
The EPTS(4) is used in the USA to predict patient survival after adult renal transplantation compared to other patients on the deceased donor waiting list, and uses age, diabetes status, previous organ transplants and duration of dialysis as predictors. These generate a raw EPTS score which is then converter to a percentile of risk using a lookup table on the OPTN website.
In the US the EPTS score is used in conjunction with the USKDRI score to prioritise the 20% of patients with best expected transplant survival for the 20% of kidneys with best anticipated long-term function.
The EPTS (as a percentile) can be calculated with with the
epts()
function and the raw EPTS score with the
raw_epts()
function in the transplantr package. Both
functions take the following parameters:
Parameter | Description | Values |
---|---|---|
age | recipient age in years | numeric vector |
dm | whether recipient has diabetes | numeric vector of 1 (yes) and 0 (no) |
prev_tx | whether previous solid organ transplant | numeric vector of 1 (yes) and 0 (no) |
dx | duration of dialysis in years | numeric vector |
It should be noted that the age and dx parameters can and should be used with exact age using decimals and not an integer of number of years.
The epts()
function in the transplantr package, which
requires the dplyr package to be installed, currently uses the most
recent published lookup table on the OPTN website, published in March
2019 using SRTR data from 2018. Archives of lookup tables from previous
years are also available on the OPTN website.
Like most of the other functions in the transplantr package, the
raw_epts()
is vectorised and can be used very efficiently
to calculate multiple scores in a dplyr pipe:
kidney.recipients2a = kidney.recipients %>%
mutate(EPTS.raw = raw_epts(age = Recipient.Age, dm = Recipient.Diabetes,
prev_tx = Recipient.PreviousTransplant, dx = Recipient.Waittime),
EPTS = epts(age = Recipient.Age, dm = Recipient.Diabetes,
prev_tx = Recipient.PreviousTransplant, dx = Recipient.Waittime))
But it can also be used with a single case:
NHSBT Policy POL186/10. Kidney Transplantation: Deceased Donor Allocation. https://nhsbtdbe.blob.core.windows.net/umbraco-assets-corp/16915/kidney-allocation-policy-pol186.pdf (viewed 28th December 2019)
Watson CJ, Johnson RJ, Birch R, et al. A Simplified Donor Risk Index for Predicting Outcome After Deceased Donor Kidney Transplantation. Transplantation 2012; 93(3):314-318. DOI: 10.1097/TP.0b013e31823f14d4
Rao PS, Schaubel DE, Guidinger MK, et al. A Comprehensive Risk Quantification Score for Deceased Donor Kidneys: The Kidney Donor Risk Index. Transplantation 2009; 88:231-236. DOI: 10.1097/TP.0b013e3181ac620b
Estimated Post-Transplant Survival Score. https://optn.transplant.hrsa.gov/media/1511/guide_to_calculating_interpreting_epts.pdf