Displaying 1 result from an estimated 1 matches for "yhat_j".
Did you mean:
yhat_i
2005 Feb 11
1
cook's distance in weighted regression
...(1)
(where r is plain unadjusted residual, k is number of parameters in model,
etc. )
but rather by
w_ii*h_ii*r_i^2/(1-hii)^2 divided by k*s^2, (2)
i.e. has the weight in there. Apart from the division this is sum of
weighted squares of differences
yhat_j - yhat_j[i]. (That is, it is the weighted sum of squares of fits
minus fits with ith point deleted.)
However, a little experimentation in R, using ls.diag(fit)$cooks, suggests
that in weighted case R gives (1) times some constant. Does anybody know how
that constant is calculated? What is the rat...