[問題] 使用STEP尋找最小BIC
我是R新手, 第一次使用這個語言. 使用STEP function 尋找最小的BIC, 在建立模型時
我新增了一些 interaction term 到模型中,
context1$abilsq <- (context1$abil)^2
context1$educsq <- (context1$educ)^2
context1$expersq <- (context1$exper)^2
context1$abileduc <- context1$abil*context1$educ
context1$abilexper<- context1$abil*context1$exper
context1$educexper<- context1$educ*context1$exper
model2A <- lm(log(wage)~abil+educ+exper+abilsq+educsq
+expersq+abileduc+abilexper+educexper
, data = context1)
model2B <- lm(log(wage)~abil+educ+exper+abilsq+educsq
+expersq+abil*educ+abil*exper+educ*exper
, data = context1)
兩個模型主要的差別在於 interaction term 有無使用*
model2minBIC <- step(model2A, direction = "backward", k = log(nrow(context1)))
model2minBIC <- step(model2B, direction = "backward", k = log(nrow(context1)))
執行結果似乎 model2B 可以跑出比較小的值, 且兩者跑出來的結果也不一樣.
下面是model2B的結果.
Step: AIC=-1545.67
log(wage) ~ exper + abileduc + educexper
Df Sum of Sq RSS AIC
<none> 342.06 -1545.7
- abileduc 1 13.185 355.25 -1506.3
- exper 1 17.853 359.91 -1490.2
- educexper 1 27.377 369.44 -1458.1
下面是model2A的結果
Step: AIC=-1539.35
log(wage) ~ abil + educ + exper + educ:exper
Df Sum of Sq RSS AIC
<none> 341.84 -1539.3
- educ:exper 1 2.8843 344.72 -1536.1
- abil 1 10.3991 352.24 -1509.6
想問是什麼原因造成兩個跑出來的結果會不一樣... 謝謝!
[關鍵字]:
BIC, step
--
※ 發信站: 批踢踢實業坊(ptt.cc), 來自: 97.99.89.205
※ 文章網址: https://www.ptt.cc/bbs/R_Language/M.1524372044.A.653.html
推
04/22 13:31,
7年前
, 1F
04/22 13:31, 1F
→
04/22 13:31,
7年前
, 2F
04/22 13:31, 2F
推
04/22 13:33,
7年前
, 3F
04/22 13:33, 3F
→
04/22 13:33,
7年前
, 4F
04/22 13:33, 4F
→
04/22 13:44,
7年前
, 5F
04/22 13:44, 5F
→
04/22 13:44,
7年前
, 6F
04/22 13:44, 6F
→
04/22 22:42,
7年前
, 7F
04/22 22:42, 7F
→
04/23 02:55,
7年前
, 8F
04/23 02:55, 8F
→
04/23 02:56,
7年前
, 9F
04/23 02:56, 9F
→
04/23 02:57,
7年前
, 10F
04/23 02:57, 10F
→
04/23 02:58,
7年前
, 11F
04/23 02:58, 11F
→
04/23 03:00,
7年前
, 12F
04/23 03:00, 12F
→
04/23 03:00,
7年前
, 13F
04/23 03:00, 13F
→
04/23 03:30,
7年前
, 14F
04/23 03:30, 14F
→
04/23 03:32,
7年前
, 15F
04/23 03:32, 15F
→
04/23 03:33,
7年前
, 16F
04/23 03:33, 16F
→
04/23 03:34,
7年前
, 17F
04/23 03:34, 17F
→
04/23 03:35,
7年前
, 18F
04/23 03:35, 18F
→
04/23 03:37,
7年前
, 19F
04/23 03:37, 19F
→
04/23 03:38,
7年前
, 20F
04/23 03:38, 20F
→
04/23 03:38,
7年前
, 21F
04/23 03:38, 21F
→
04/23 06:27,
7年前
, 22F
04/23 06:27, 22F
R_Language 近期熱門文章
PTT數位生活區 即時熱門文章