How to find the percent variation in Y is explained by X?

11.9k Views Asked by At

I know that the r^2 value for the data is 0.9832. Is there a way to use that value to find the percent variation in Y is explained by X? Or do I need to use the data given to me?

1

There are 1 best solutions below

0
On BEST ANSWER

$r^2*100$ is the percentage of variance explained by $X$.

When you regress $Y$ on $X$ you get $\hat{Y}=a+r\frac{s_y}{s_x}X$

And $Var(\hat{Y})=r^2Var(Y)$ from the above equation.

So $\frac{Var(\hat{Y})}{Var(Y)}*100=r^2*100$ is the percentage of variance explained by x.