ฉันกำลังพยายามคำนวณการทำนายผลแบบสุ่มจากแบบจำลองเชิงเส้นผสมด้วยมือและการใช้สัญกรณ์ของ Wood ในแบบจำลองการเติมทั่วไป: การแนะนำด้วย R (pg 294 / pg 307 ของ pdf) ฉันสับสนกับสิ่งที่แต่ละพารามิเตอร์ หมายถึง
ด้านล่างนี้เป็นบทสรุปจากไม้
กำหนดรูปแบบผสมเชิงเส้น
โดยที่ b N (0, ψ ) และϵ ∼ N (0, σ 2 )
ถ้า b และ y เป็นตัวแปรสุ่มที่มีการแจกแจงปกติร่วม
การคาดการณ์ RE คำนวณโดย
การใช้ตัวอย่างรูปแบบการสกัดกั้นแบบสุ่มจากlme4
แพ็คเกจ R ฉันรับเอาท์พุท
library(lme4)
m = lmer(angle ~ temp + (1 | replicate), data=cake)
summary(m)
% Linear mixed model fit by REML ['lmerMod']
% Formula: angle ~ temp + (1 | replicate)
% Data: cake
%
% REML criterion at convergence: 1671.7
%
% Scaled residuals:
% Min 1Q Median 3Q Max
% -2.83605 -0.56741 -0.02306 0.54519 2.95841
%
% Random effects:
% Groups Name Variance Std.Dev.
% replicate (Intercept) 39.19 6.260
% Residual 23.51 4.849
% Number of obs: 270, groups: replicate, 15
%
% Fixed effects:
% Estimate Std. Error t value
% (Intercept) 0.51587 3.82650 0.135
% temp 0.15803 0.01728 9.146
%
% Correlation of Fixed Effects:
% (Intr)
% temp -0.903
cake$angle - predict(m, re.form=NA)
sigma
th = 23.51
zt = getME(m, "Zt")
res = cake$angle - predict(m, re.form=NA)
sig = sum(res^2) / (length(res)-1)
การคูณเหล่านี้เข้าด้วยกันจะช่วยให้
th * zt %*% res / sig
[,1]
1 103.524878
2 94.532914
3 33.934892
4 8.131864
---
ซึ่งไม่ถูกต้องเมื่อเทียบกับ
> ranef(m)
$replicate
(Intercept)
1 14.2365633
2 13.0000038
3 4.6666680
4 1.1182799
---
ทำไม?
plot(residuals(m), cake$angle-predict(m, re.form=NULL)) ; plot(residuals(m), cake$angle-predict(m, re.form=NA))