When speaking about regression,
Why is the $SE_y = SD_y\sqrt{1-r^2}$ ? $r$ is the correlation coefficient .
I can't really see it.
When speaking about regression,
Why is the $SE_y = SD_y\sqrt{1-r^2}$ ? $r$ is the correlation coefficient .
I can't really see it.
I am not sure about your notation, however:
$SSR = \sum (\hat y- \bar y)^2 $
$SSE = \sum (y- \hat y)^2 $
$SST = \sum (y- \bar y)^2 $
Using the regression identity: $SSE = SSR + SSE$
It is out of scope but you can read more about the regression identity e.g. here.
It is relatively trivial to show that: $SSE = SST - \frac{SSR}{SST}*SST$, where $\frac{SSR}{SST} = r^2$ and $r^2$ is the coefficient of indetermination. Which ultimately gives: $SSE = SST*(1-r^2)$.
If we assume $SE_y = \sqrt{\frac{SSE}{n-k}}$ we can deduce that it is then a matter to divide by the nobs ($n$) less the number of variables in the model $k$; and then take the sqrt of the right hand and left hand side of the identify above.
$SD_y = \sqrt{\frac{SST}{n-1}} $ where $SD_y$ is just a sample standard deviation of the y's. This means that the relationship suggested by the OP is not entirely correct.