Learn R Programming

healthequal (version 1.0.1)

mld: Mean log deviation (MLD)

Description

The mean log deviation (MLD) is a relative measure of inequality that considers all population subgroups. Subgroups are weighted according to their population share.

Usage

mld(est, se = NULL, pop, conf.level = 0.95, force = FALSE, ...)

Value

The estimated MLD value, corresponding estimated standard error, and confidence interval as a data.frame.

Arguments

est

The subgroup estimate. Estimates must be available for at least 85% of subgroups.

se

The standard error of the subgroup estimate. If this is missing, 95% confidence intervals cannot be calculated.

pop

The number of people within each subgroup.Population size must be available for all subgroups.

conf.level

Confidence level of the interval. Default is 0.95 (95%).

force

TRUE/FALSE statement to force calculation when more than 85% of subgroup estimates are missing.

...

Further arguments passed to or from other methods.

Details

MLD measures the extent to which the shares of the population and shares of the health indicator differ across subgroups, weighted by shares of the population. MLD is calculated as the sum of products between the negative natural logarithm of the share of the indicator of each subgroup and the population share of each subgroup. MLD may be more easily readable when multiplied by 1000. For more information on this inequality measure see Schlotheuber (2022) below.

Interpretation: MLD is 0 if there is no inequality. Greater absolute values indicate higher levels of inequality. MLD is more sensitive to differences further from the setting average (by the use of the logarithm). MLD has no unit.

Type of summary measure: Complex; relative; weighted

Applicability: Non-ordered dimensions of inequality with more than two subgroups

Warning: The confidence intervals are approximate and might be biased. See Ahn (2018) below for further information on the standard error formula.

References

Schlotheuber, A, Hosseinpoor, AR. Summary measures of health inequality: A review of existing measures and their application. Int J Environ Res Public Health. 2022;19(6):3697. doi:10.3390/ijerph19063697.

Ahn J, Harper S, Yu M, Feuer EJ, Liu B, Luta G. Variance estimation and confidence intervals for 11 commonly used health disparity measures. JCO Clin Cancer Inform. 2018;2:1-19. doi:10.1200/CCI.18.00031.

Examples

Run this code
# example code
data(NonorderedSample)
head(NonorderedSample)
with(NonorderedSample,
     mld(est = estimate,
         se = se,
         pop = population))

Run the code above in your browser using DataLab