A vectorised function to convert kdri KDRI scores to KDPI percentiles. If the OPTN scaling factor was
not used when calculating the KDRI, it can be set here using the optional scaling parameter which
uses a default value of 1 (for no scaling).
Usage
kdpi_lookup(kdri, scaling = 1)
Arguments
kdri
numeric vector of KDRI values
scaling
optional parameter for scaling factor (default is 1)
Value
numeric vector of KDPI percentiles
Details
This function requires the dplyr package to be installed.
# NOT RUN {# if scaling factor was used when calculating KDRIkdpi_lookup(1.25)
# if scaling factor for 2018 needs to be appliedkdpi_lookup(1.25, scaling = 1.2506957544151)
# }