Hi everyone,
I'm interested in using recentred influence functions (RIFs) to identify socio-demographic factors that are the largest contributors to inequalities in gambling harms, and how these have changed over time. I'm interested in identifying factors that are associated with harm and are themselves unequally distributed. So far, I have used concentration indices (mainly the Erreygers's index) to identify levels of inequality by income, for different gambling-harm related outcomes, using code such as:
I have two main questions:
1. Are RIFs the appropriate regressions to use in this case, and do the RIF regressions suffice or do I also need to conduct decomposition analysis?
2. I'm hoping to use the commands rifvar and rifhdreg developed by Fernando Rios-Avila for this analysis, and do something as follows; is this the correct approach?
Also, can I use absolute income values here or do I need to rank income by quintiles first?
Many thanks,
Ashani
I'm interested in using recentred influence functions (RIFs) to identify socio-demographic factors that are the largest contributors to inequalities in gambling harms, and how these have changed over time. I'm interested in identifying factors that are associated with harm and are themselves unequally distributed. So far, I have used concentration indices (mainly the Erreygers's index) to identify levels of inequality by income, for different gambling-harm related outcomes, using code such as:
Code:
conindex pgsi [pweight=scq_wgt], rankvar(income) robust cluster(xwaveid) truezero bounded limits(0 27) erreygers
I have two main questions:
1. Are RIFs the appropriate regressions to use in this case, and do the RIF regressions suffice or do I also need to conduct decomposition analysis?
2. I'm hoping to use the commands rifvar and rifhdreg developed by Fernando Rios-Avila for this analysis, and do something as follows; is this the correct approach?
Code:
egen rif_pgsi = rifvar(pgsi), eindex(income) lb(0) ub(27) //outcome is pgsi which ranges from 0 to 27 rifhdreg rif_pgsi age female, rif(eindex(income) lb(0) ub(27)) robust //how much do age and gender contribute to inequalities in the pgsi distribution
Many thanks,
Ashani

Comment