Worked examples for phe_sii function

Emma Clegg

2020-03-12

Introduction

This vignette provides examples of how to use the phe_sii function with different kinds of indicators.

The following packages must be installed and loaded if not already available

# source functions required
library(PHEindicatormethods)
library(dplyr)

Function and inputs

phe_sii is an aggregate function, returning the slope index of inequality (SII) statistic for each grouping set in the inputted dataframe, with lower and upper confidence limits based on the specified confidence. The user can choose whether to return the Relative Index of Inequality (RII) via an optional argument in the function.

Each grouping set in the input data should have a row for each quantile, labelled with the quantile number, which contains the associated population, indicator value and 95% confidence limits. The user has the option to provide the standard error instead of the 95% confidence limits, in which case this is used directly rather than being calculated by the function.

The user can also specify the indicator type from “0 - default”, “1 - rate” or “2 - proportion”, where different transformations are applied to the input indicator value and confidence limits in the case of a rate or proportion. Examples are provided below for the three cases.

Example 1 - default (normal) distribution

The example below calculates the SII on some life expectancy data. This is assumed to have symmetric confidence intervals around the indicator values, so default standard error calculations would be done (involving no prior transformations).

The relevant fields in the input dataset are specified for the arguments quantile, population and value. value_type is kept equal to 0 (default), and the number of repetitions set to 100 for faster running of the function as a demonstration.

The standard error (se) has been provided here in the input dataset, meaning this will be used directly and lower/upper 95% confidence limits of the indicator values are not needed.

# Pass data through SII function ---------------------------------------
LE_data_SII <- LE_data %>%
        # Group the input dataframe to create subgroups to calculate the SII for
        group_by(Sex, GeoCode) %>% 
        # Run SII function on grouped dataset
        phe_sii(quantile = Decile,
                population = Pop ,
                value = LifeExp,
                value_type = 0, # specify default indicator type
                confidence = c(0.95, 0.998),
                se = SE,
                repetitions = 1000,
                rii = FALSE,
                type = "full") # use smaller no. of repetitions e.g. for testing
## Warning in phe_sii(., quantile = Decile, population = Pop, value = LifeExp, :
## some records have been removed due to incomplete or invalid data
# View first 10 rows of results
knitr::kable(head(LE_data_SII, 10))  
Sex GeoCode sii sii_lower95_0cl sii_lower99_8cl sii_upper95_0cl sii_upper99_8cl indicator_type multiplier CI_confidence CI_method
1 E06000001 11.68886 9.369003 8.067854 14.18708 15.51744 normal 1 95%, 99.8% simulation 1000 reps
1 E06000002 12.54785 10.422294 9.030230 14.54217 15.50649 normal 1 95%, 99.8% simulation 1000 reps
1 E06000003 10.05084 7.680368 6.325374 12.28876 13.12107 normal 1 95%, 99.8% simulation 1000 reps
1 E06000004 14.85223 12.981842 11.969177 16.53620 17.29092 normal 1 95%, 99.8% simulation 1000 reps
1 E06000005 11.68095 9.045422 7.523574 14.14777 15.60711 normal 1 95%, 99.8% simulation 1000 reps
1 E06000006 12.27526 10.359998 9.558136 14.49998 15.71337 normal 1 95%, 99.8% simulation 1000 reps
1 E06000007 11.59893 10.005473 9.023977 13.19292 13.99210 normal 1 95%, 99.8% simulation 1000 reps
1 E06000008 10.72510 8.705289 6.972355 12.90633 14.22027 normal 1 95%, 99.8% simulation 1000 reps
1 E06000009 13.59387 11.493075 10.396824 15.79382 16.63709 normal 1 95%, 99.8% simulation 1000 reps
1 E06000010 11.20094 9.730794 8.740264 12.66902 13.45738 normal 1 95%, 99.8% simulation 1000 reps

Note that some areas are missing quantiles in the dataset, and these are subsequently excluded from the function output with a warning given.

Example 2 - rate

The example below calculates both the SII and RII on Directly Standardised Rate (DSR) data. The value_type argument is set to 1 to specify this indicator is a rate; this means a log transformation will be applied to the value, lower_cl and upper_cl fields before calculating the standard error.

As the number of repetitions is not specified, the function will run on the default 100,000. To return the RII, the rii argument is set to TRUE.

Finally, setting reliability_stat = TRUE will run additional sample sets of the SII/RII confidence limits and return a Mean Average Difference (MAD) value for each subgroup. See below for guidance on how to use this.

# Pass data through SII function ---------------------------------------
DSR_data_SII <- DSR_data %>%
        # Group the input dataframe to create subgroups to calculate the SII for
        group_by(Period) %>% 
        # Run SII function on grouped dataset
        phe_sii(quantile = Quintile,
                population = total_pop ,
                value = value,
                value_type = 1, # specifies indicator is a rate
                lower_cl = lowercl,
                upper_cl = uppercl,
                rii = TRUE, # returns RII as well as SII (default is FALSE)
                reliability_stat = TRUE) # returns reliability stats (default is FALSE)

# View results
knitr::kable(DSR_data_SII)  
Period sii rii sii_lower95_0cl sii_upper95_0cl rii_lower95_0cl rii_upper95_0cl sii_mad95_0 rii_mad95_0 indicator_type multiplier CI_confidence CI_method
2010 -14.848683 0.8956758 -18.96563 -10.774602 0.8688503 0.9231615 0.0181013 0.0001137 rate 1 95% simulation 1e+05 reps
2011 -13.528326 0.9039924 -17.61358 -9.450851 0.8769541 0.9318526 0.0165718 0.0001072 rate 1 95% simulation 1e+05 reps
2012 -11.680045 0.9159389 -15.71594 -7.657857 0.8886659 0.9439515 0.0118450 0.0000969 rate 1 95% simulation 1e+05 reps
2013 -10.544273 0.9232984 -14.56965 -6.558889 0.8956908 0.9515340 0.0214623 0.0001402 rate 1 95% simulation 1e+05 reps
2014 -10.591214 0.9226440 -14.55707 -6.639039 0.8953167 0.9507750 0.0132154 0.0001006 rate 1 95% simulation 1e+05 reps
2015 -9.042367 0.9332670 -12.95527 -5.138369 0.9059004 0.9614775 0.0113042 0.0000836 rate 1 95% simulation 1e+05 reps

Example 3 - proportion

This example calculates the SII for a prevalence indicator. Proportions need to be between 0 and 1 - this formatting is done in the mutate command below, before passing the grouped dataset to the phe_sii function.

The value_type argument is set to 2 to specify the indicator is a proportion, and a logit transformation is applied to the value, lower_cl and upper_cl fields.

The function will again run on the default 100,000 reps, and neither the RII or MAD values will be returned.

There is the option to specify a numeric multiplier in the arguments, which will scale the SII, SII_lowerCL, SII_upperCL (and SII_MAD) before outputting. This could be used if an absolute (i.e. positive) slope is desired for an indicator, where the “high is bad” polarity would otherwise give negative SII results.

Below, a multiplier of -100 is used, to output absolute prevalence figures that are expressed on a scale between 0 and 100.

# Pass data through SII function ---------------------------------------
prevalence_SII <- prevalence_data %>%
          # Group the input dataframe to create subgroups to calculate the SII for
        group_by(Period, SchoolYear, AreaCode) %>% 
          # Format prevalences to be between 0 and 1
        mutate(Rate = Rate/100,
               LCL = LCL/100,
               UCL = UCL/100) %>% 
           # Run SII function on grouped dataset
        phe_sii(quantile = Decile,
                        population = Measured,
                        value = Rate,
                        value_type = 2, # specifies indicator is a proportion
                        lower_cl = LCL,
                        upper_cl = UCL,
                        multiplier = -100) # negative multiplier to scale SII outputs

# View first 10 rows of results
knitr::kable(head(prevalence_SII,10)) 
Period SchoolYear AreaCode sii sii_lower95_0cl sii_upper95_0cl indicator_type multiplier CI_confidence CI_method
607 6 E92000001 10.720032 10.219059 11.219626 proportion -100 95% simulation 1e+05 reps
607 R E92000001 5.818547 5.417407 6.215327 proportion -100 95% simulation 1e+05 reps
708 6 E92000001 11.025821 10.651103 11.401803 proportion -100 95% simulation 1e+05 reps
708 R E92000001 6.048249 5.755818 6.338338 proportion -100 95% simulation 1e+05 reps
809 6 E92000001 11.528301 11.161521 11.894117 proportion -100 95% simulation 1e+05 reps
809 R E92000001 6.734782 6.460237 7.009756 proportion -100 95% simulation 1e+05 reps
910 6 E92000001 12.186004 11.818970 12.553323 proportion -100 95% simulation 1e+05 reps
910 R E92000001 6.959414 6.685161 7.229907 proportion -100 95% simulation 1e+05 reps
1011 6 E92000001 12.781047 12.413154 13.151157 proportion -100 95% simulation 1e+05 reps
1011 R E92000001 6.953482 6.690314 7.217695 proportion -100 95% simulation 1e+05 reps

Interpreting the Mean Average Difference (MAD)

If reliability_stat is set to TRUE in the function, a MAD value is returned for each subgroup as a measure of how much the SII (or RII) confidence limits vary.

Note: this option will increase the runtime of the function, as the MAD calculation involves an additional 9 sample sets of the confidence limits to be taken.

A MAD of 0.005 implies that, on rerunning the phe_sii function, the confidence limits can be expected to change by approximately 0.005. The more repetitions the function is run on, the smaller this statistic should be. The tolerance will depend on the level of accuracy to which the user wishes to present the confidence limits - ideally, to display them to 1 d.p., the MAD should be smaller than 0.01. To 2 d.p., smaller than 0.001, etc.