짧은 대답은 "그렇습니다"입니다. 그러나 "큰 모델"의 최대 가능성 추정치 (MLE)를 두 모델에 모두 맞는 두 모델의 모든 공변량과 비교해야합니다.
이것은 확률 이론이 귀하의 질문에 대답 할 수있는 "준 공식적인"방법입니다
이 예에서 과 Y 2 는 동일한 유형의 변수 (분수 / 백분율)이므로 비교할 수 있습니다. 나는 당신이 같은 모델을 둘 다에 적합하다고 가정합니다. 따라서 두 가지 모델이 있습니다.Y1Y2
L O g ( P 1 명 I
M1:Y1i∼Bin(n1i,p1i)
M2:Y2나는~B나N(N2I,P2I)LOg(P 2 IL O g( p1 나는1 - p1 나는) = α1+ β1엑스나는
미디엄2: Y2 나는~ B 나 N ( N2 나는, p2 나는)
L O g( p2 나는1 - p2 나는) = α2+ β2엑스나는
따라서 평가하려는 가설이 있습니다.
H0: β1> β2
그리고 일부 데이터 및 일부 사전 정보 (예 : 물류 모델 사용)가 있습니다. 따라서 확률을 계산하십시오.{Y1i,Y2i,Xi}ni=1
P=Pr(H0|{Y1i,Y2i,Xi}ni=1,I)
이제 은 회귀 모수의 실제 값에 의존하지 않으므로 한계 화로 제거해야합니다.H0
P=∫∞−∞∫∞−∞∫∞−∞∫∞−∞Pr(H0,α1,α2,β1,β2|{Y1i,Y2i,Xi}ni=1,I)dα1dα2dβ1dβ2
가설은 단순히 통합 범위를 제한하므로 다음과 같은 이점이 있습니다.
P=∫∞−∞∫∞β2∫∞−∞∫∞−∞Pr(α1,α2,β1,β2|{Y1i,Y2i,Xi}ni=1,I)dα1dα2dβ1dβ2
Because the probability is conditional on the data, it will factor into the two separate posteriors for each model
Pr(α1,β1|{Y1i,Xi,Y2i}ni=1,I)Pr(α2,β2|{Y2i,Xi,Y1i}ni=1,I)
Now because there is no direct links between Y1i and α2,β2, only indirect links through Xi, which is known, it will drop out of the conditioning in the second posterior. same for Y2i in the first posterior.
From standard logistic regression theory, and assuming uniform prior probabilities, the posterior for the parameters is approximately bi-variate normal with mean equal to the MLEs, and variance equal to the information matrix, denoted by V1 and V2 - which do not depend on the parameters, only the MLEs. so you have straight-forward normal integrals with known variance matrix. αj marginalises out with no contribution (as would any other "common variable") and we are left with the usual result (I can post the details of the derivation if you want, but its pretty "standard" stuff):
P=Φ(β^2,MLE−β^1,MLEV1:β,β+V2:β,β−−−−−−−−−−−√)
Where Φ() is just the standard normal CDF. This is the usual comparison of normal means test. But note that this approach requires the use of the same set of regression variables in each. In the multivariate case with many predictors, if you have different regression variables, the integrals will become effectively equal to the above test, but from the MLEs of the two betas from the "big model" which includes all covariates from both models.