http://www.rmdk.ca/boosting_forests_bagging.html 8.3.3 Bagging and Random Forests DATA : Boston Medv (주택의 가격 변수)에 대한여러 요건들(13개 변수)간의 관계 분석 #################################################################### # Boston DATA-set library(MASS) data("Boston") set.seed(1) train <- sample(1:nrow(Boston), nrow(Boston)/2) boston.train <- Boston[ train, ] Read more…