Suppose I have a panel data setting and I run a regression like this:
I would like to understand the relative contribution of each regressor (age, ttl_exp and tenure) separately to explain the variance of ln_wage.
Any ideas on how can I perform that in a panel data setting like this?
It would be great if I could do it by groups. Suppose age and ttl_exp are in a group and tenure in another. I would like to understand the contribution of the two groups instead of the three variables.
Code:
webuse nlswork.dta, clear reghdfe ln_wage age ttl_exp tenure, absorb(idcode year)
Any ideas on how can I perform that in a panel data setting like this?
It would be great if I could do it by groups. Suppose age and ttl_exp are in a group and tenure in another. I would like to understand the contribution of the two groups instead of the three variables.
Comment