In multiple regression, if you have just an ANOVA table, and nothing else, no specific data, how can you do a partial F test on X1, given X2 is already in the model?
So, you have the ANOVA table:
source df SS MS F
-----------------------------------
regression 2 1.44 0.72 9.72
error 3 0.22 0.07
total 5 1.66
-----------------------------------
All values are filled in. With only this information, how can you do the partial F test where:
- F = MSR(X1|X2) / MSE(X1, X2)
- MSR(X1|X2) = SSR(X1, X2) - SS(X2) = 1.44 - ????
- MSE (X1, X2) = MSE = 0.07
SSR(X1, X2) can be obtained from the table (SS regression) MSE(X1, X2) can also be obtained from the table (just MSE) but I cannot get SS(X2) from the table, as far as I know......
As far as I know, you need specific X and Y values to do this. Any other way from just the table?