I realise this is probably a very simple question but after searching I can't find the answer I am looking for.
I have a problem where I need to standardize the variables run the (ridge regression) to calculate the ridge estimates of the betas.
I then need to convert these back to the original variables scale.
But how do I do this?
I found a formula for the bivariate case that
$$ \beta^* = \hat\beta \frac{S_x}{S_y} \>. $$
This was given in D. Gujarati, Basic Econometrics, page 175, formula (6.3.8).
Where $\beta^*$ are the estimators from the regression run on the standardized variables and $\hat\beta$ is the same estimator converted back to the original scale, $S_y$ is the sample standard deviation of the regressand, and $S_x$ is the sample standard deviation.
Unfortunately the book doesn't cover the analogous result for multiple regression.
Also I'm not sure I understand the bivariate case? Simple algebraic manipulation gives the formula for $\hat\beta$ in the original scale:
$$ \hat\beta=\beta^* \frac{S_y}{S_x} $$
It seems odd to me that the $\hat\beta$ that were calculated on variables which are already deflated by $S_x$, has to be deflated by $S_x$ again to be converted back? (Plus why are the mean values not added back in?)
So, can someone please explain how to do this for a multivariate case ideally with a derivation so that I can understand the result?