This would be a lot easier to understand if you have already taken the Regression Analysis Course.
Basically, SE(phi) = sqrt( (RSS / n-2) / sum(X* ^2) ) where n = the no. of observations (so yes, you are correct in supposing that degrees of freedom = 6 = 8-2)
RSS = the sum of the squares of the differences between Y and the fitted Y from the regression --> Using the first observation (X = 0.44, Y = 1.05), the fitted Y is computed as follows: fitted Y = the intercept from the regression (0.585417) + the estimated phi (0.542508) * X (0.44) = 0.82412
--> Then (Y - fitted Y)^2 = (1.05 - 0.82412)^2 = 0.051022
Do this for all observations and get the sum, which would be the RSS.
X* ^2 = (X - average of all the X's)^2 e.g. for the first observation, this would be (0.44 - 0.99)^2 = 0.3025 Then do this for all observations yet again and get the sum.
I hope this makes sense to you.
|