पेड़ों के बीच पूरा जंगल देखना

R में Supervised Learning: Classification

Brett Lantz

Instructor

रैंडम फॉरेस्ट समझना

जंगल में पेड़

R में Supervised Learning: Classification

एन्सेम्बल के रूप में निर्णय लेना

एक जटिल पेड़ बनाम तीन सरल पेड़

पाँच मॉडलों की वोटिंग

R में Supervised Learning: Classification

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: Classification

अभ्यास करते हैं!

R में Supervised Learning: Classification

Preparing Video For Download...