범주 형 변수가 하나 인 선형 회귀 모형이 있습니다. (남녀) 및 하나의 연속 변수 .
R에서 대비 코드를로 설정했습니다 options(contrasts=c("contr.sum","contr.poly"))
. 이제 , 및을 사용하여 상호 작용 (A : B)에 대한 Type III 제곱합이 있습니다.drop1(model, .~., test="F")
내가 붙어있는 것은 의 제곱합이 계산되는 방법 입니다. 나는 그것이 생각합니다 sum((predicted y of the full model - predicted y of the reduced model)^2)
. 축소 된 모델은 다음과 같습니다 y~A+A:B
. 그러나을 사용할 때 predict(y~A+A:B)
R은 전체 모델 예측 값과 동일한 예측 값을 반환합니다. 따라서 제곱의 합은 0이됩니다.
(제곱의 합 들어 , I는 감소 된 이용 모델 과 동일하다 .)y~B+A:B
y~A:B
무작위로 생성 된 데이터의 예제 코드는 다음과 같습니다.
A<-as.factor(rep(c("male","female"), each=5))
set.seed(1)
B<-runif(10)
set.seed(5)
y<-runif(10)
model<-lm(y~A+B+A:B)
options(contrasts = c("contr.sum","contr.poly"))
#type3 sums of squares
drop1(model, .~., test="F")
#or same result:
library(car)
Anova(lm(y~A+B+A:B),type="III")
#full model
predFull<-predict(model)
#Calculate sum of squares
#SS(A|B,AB)
predA<-predict(lm(y~B+A:B))
sum((predFull-predA)^2)
#SS(B|A,AB) (???)
predB<-predict(lm(y~A+A:B))
sum((predFull-predB)^2)
#Sums of squares should be 0.15075 (according to anova table)
#but calculated to be 2.5e-31
#SS(AB|A,B)
predAB<-predict(lm(y~A+B))
sum((predFull-predAB)^2)
#Anova Table (Type III tests)
#Response: y
# Sum Sq Df F value Pr(>F)
#(Intercept) 0.16074 1 1.3598 0.2878
#A 0.00148 1 0.0125 0.9145
#B 0.15075 1 1.2753 0.3019
#A:B 0.01628 1 0.1377 0.7233
#Residuals 0.70926 6