나무에서 숲 보기

R로 배우는 Supervised Learning: 분류

Brett Lantz

Instructor

랜덤 포레스트 이해하기

숲 속의 나무들

R로 배우는 Supervised Learning: 분류

앙상블로 의사 결정하기

단일 복잡 트리 vs. 세 개의 단순 트리

다섯 모델의 투표

R로 배우는 Supervised Learning: 분류

R에서의 랜덤 포레스트

# building a simple random forest
library(randomForest)
m <- randomForest(repaid ~ credit_score + request_amt, data = loans,
             ntree = 500,    # number of trees in the forest
             mtry = sqrt(p)) # number of predictors (p) per tree
# making predictions from a random forest
p <- predict(m, test_data)
R로 배우는 Supervised Learning: 분류

연습해 봅시다!

R로 배우는 Supervised Learning: 분류

Preparing Video For Download...