Tôi đang cố gắng ước tính điểm trung bình cho hai nhóm học sinh. Tôi sử dụng mô hình hồi quy nhị thức. Các total_ans
là câu hỏi tổng họ đã đã trả lời, mà có thể khác nhau cho sinh viên khác nhau.
Mô hình 1 trực tiếp ước tính
model <- glm(cbind(total_correct, total_ans-total_correct) ~ student_type,family= binomial, data = df)
Call: glm(formula = cbind(total_correct, total_ans - total_correct) ~ student_type, family = binomial, data = df)
Coefficients:
(Intercept) student_group_2
-1.9684 0.2139
Degrees of Freedom: 1552 Total (i.e. Null); 1551 Residual Null
Deviance: 1480 Residual Deviance: 1477 AIC: 1764
lsmeans(model,~ student_type, type="response")
student_type prob SE df asymp.LCL asymp.UCL
student_group_1 0.1225627 0.00654160 NA 0.1103074 0.1359715
student_group_2 0.1474774 0.01275231 NA 0.1241918 0.1742602
Trong mô hình 2, tôi sử dụng một hiệu ứng ngẫu nhiên để giải thích tốt hơn cho các phương sai riêng lẻ.
model <- glmer(cbind(total_correct, total_ans-total_correct) ~ (1|student) + student_type, family= binomial, data = sub_df, control=glmerControl(optimizer = "nloptwrap", calc.derivs = FALSE))
Generalized linear mixed model fit by maximum likelihood (Laplace
Approximation) [glmerMod]
Family: binomial ( logit )
Formula: cbind(total_correct, total_ans - total_correct) ~ (1 | student) +
student_type
Data: sub_df
AIC BIC logLik deviance df.resid
1653.9049 1669.9488 -823.9525 1647.9049 1550
Random effects:
Groups Name Std.Dev.
student (Intercept) 1.881
Number of obs: 1553, groups: author, 1553
Fixed Effects:
(Intercept) student_group_2
-3.0571 0.3915
lsmeans(model,~ student_type, type="response")
student_type prob SE df asymp.LCL asymp.UCL
student_group_1 0.04491007 0.004626728 NA 0.03666574 0.0549025
student_group_2 0.06503249 0.015117905 NA 0.04097546 0.1017156
Tôi ngạc nhiên rằng có một sự khác biệt lớn như vậy giữa các kết quả trong hai nhóm. Điều gì có thể là lý do cho điều này?
Thông tin thêm: nhóm 1 có 1434 sinh viên, nhóm 2 có 119 sinh viên. đây là những nhóm xuất hiện tự nhiên
emmeans
. Cú pháp rất có thể sẽ gần giống nhau.