-
앙상블 모형 예측, 성과분석 in r<R>/[데이터 분석] 2021. 12. 5. 14:26728x90
배깅, 부스팅, 랜덤포레스트
예측
pred<-predict(model, test[,-k], type="prob") pred_1<-data.frame(pred$prob, Y=pred$class)
성과분석
pred.rf<-predict(model, test[,-k], type="class") confusionMatrix(data=pred.rf, reference=test[,k], positive="No")
728x90'<R> > [데이터 분석]' 카테고리의 다른 글
분산분석(ANOVA) in r (0) 2021.12.05 랜덤포레스트 in r (0) 2021.12.05 연관성 분석 in r (0) 2021.12.05 Support Vector Machine in r (0) 2021.12.05 다중선형회귀분석 in r (0) 2021.12.05