Hello everyone,
I'm working on a multivariate analysis in Stata and I'm looking to determine the contribution of each independent variable to the explained variance of the dependent variable. My goal is to understand how much of the total variance of the dependent variable each individual predictor explains.
Here is my command :
My variables of interest are gender_code centPERF and their interaction (c.centPERF#i.gender_code). I'd like to know how they contribute to the model.
Is it the gender_code variable that explains more variance in the dependent variable? or centPERF? or their interaction?
Do you have any methods for achieving this goal?
Thank you very much
I'm working on a multivariate analysis in Stata and I'm looking to determine the contribution of each independent variable to the explained variance of the dependent variable. My goal is to understand how much of the total variance of the dependent variable each individual predictor explains.
Here is my command :
Code:
regress REMFULL_w gender_code centPERF c.centPERF#i.gender_code LnSIZE BM_w leverageratio_w LOSS LEGAL Outsideinvestorprotection GDPpercapitagrowth UNEMPL CORRUP i.I i.chiffres, vce(robust)
Is it the gender_code variable that explains more variance in the dependent variable? or centPERF? or their interaction?
Do you have any methods for achieving this goal?
Thank you very much
Comment