R 전진선택법

1 개요[ | ]

R forward selection
R 전진선택법

2 예시[ | ]

df <- mtcars
null.model <- lm(mpg ~ 1, data=df)
full.model <- lm(mpg ~ ., data=df)
step.model <- step(direction="forward", object=null.model, scope=list(lower=null.model, upper=full.model))
summary(step.model)
→ 0단계 - null model (AIC=115.94)
→ 1단계 - wt 선택 (AIC=73.22)
→ 2단계 - cyl 선택 (AIC=63.2)
→ 3단계 - hp 선택 (AIC=62.66)
→ 더 이상 AIC를 낮출 수 없으므로 종료

3 같이 보기[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}