Dear all,
I have a dataset with a set of fractional outcomes ranging from 0 to 1, summing up to 1 for each individual. I would like to do the following:
1. Estimate the predictors for each fractional outcome (in absolute terms, not in relation to one specific referent fractional outcome)
2. Compare the relative importance of predictors for each fractional outcome
3. Compare the relative importance of predictors across fractional outcomes
Suppose that in my example, the fractional outcomes are governing, safety, education, recreation, social and urbanplanning; the predictors are popdens and houseval. I decided to fit a fractional multinomial logistic regression model as below:
This approach allows me to achieve aim #1, but I would kindly request help on:
- how to establish the relative importance of houseval and popdens on, e.g., governing
- how to establish the relative importance of houseval on governing and houseval on safety
- how to establish the relative importance of houseval on governing and popdens on safety
- how to quantify such relative importance (e.g. to be able to claim that houseval has double the effect on governing that popdens has, or that the effect of popdens on governing is 1.5 times that on recreation)
I guess a SUEST/SUREG and/or a DOMIN/DOMME approach would be helpful (please consider that in my dataset houseval and popdens have different units of measurement), but I'm not sure how to implement them in practice. Maybe Joseph Luchman or other may help?
Thanks,
Manuel
I have a dataset with a set of fractional outcomes ranging from 0 to 1, summing up to 1 for each individual. I would like to do the following:
1. Estimate the predictors for each fractional outcome (in absolute terms, not in relation to one specific referent fractional outcome)
2. Compare the relative importance of predictors for each fractional outcome
3. Compare the relative importance of predictors across fractional outcomes
Suppose that in my example, the fractional outcomes are governing, safety, education, recreation, social and urbanplanning; the predictors are popdens and houseval. I decided to fit a fractional multinomial logistic regression model as below:
Code:
use http://fmwww.bc.edu/repec/bocode/c/citybudget.dta, clear
local outcomes governing safety education recreation social urbanplanning
fmlogit `outcomes', eta(houseval popdens)
foreach v of local outcomes {
margins, dydx(houseval popdens) predict(outcome(`v'))
}
- how to establish the relative importance of houseval and popdens on, e.g., governing
- how to establish the relative importance of houseval on governing and houseval on safety
- how to establish the relative importance of houseval on governing and popdens on safety
- how to quantify such relative importance (e.g. to be able to claim that houseval has double the effect on governing that popdens has, or that the effect of popdens on governing is 1.5 times that on recreation)
I guess a SUEST/SUREG and/or a DOMIN/DOMME approach would be helpful (please consider that in my dataset houseval and popdens have different units of measurement), but I'm not sure how to implement them in practice. Maybe Joseph Luchman or other may help?
Thanks,
Manuel

Comment