I have a typical linear regression model:
Y = B0 + B1*X1 + B2*X2
where B0, B1 and B2 are the regression coefficients which I solve for.
Before I do any regression modeling, I standardize the predictor variables X1 and X2. I also standardize the dependent(outcome) variable Y.
X1_standardized = (X1 - X1_mean) / X1_std
X2_standardized = (X2 - X2_mean) / X2_std
Y_standardized = (y - y_mean) / y_std
I would like to use the standardized values for my regression, however, to improve interpretation, I would like to revert (or de-standardize) the beta coefficients after solving for them.
How can I do this?