码迷,mamicode.com
首页 > 编程语言 > 详细

R语言randomForest包实现随机森林——iris数据集和kyphosis数据集

时间:2015-11-01 15:17:44      阅读:1437      评论:0      收藏:0      [点我收藏+]

标签:

library(randomForest)
model.forest<-randomForest(Species~.,data=iris)
pre.forest<-predict(model.forest,iris)
table(pre.forest,iris$Species)

 

library(rpart)
library(randomForest)
model.forest<-randomForest(Kyphosis~.,data=kyphosis)
pre.forest<-predict(model.forest,kyphosis)
table(pre.forest,kyphosis$Kyphosis)

R语言randomForest包实现随机森林——iris数据集和kyphosis数据集

标签:

原文地址:http://www.cnblogs.com/MarsMercury/p/4927609.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!