您的訂閱是我製作影片的動力
訂閱點這裡~
若內容有誤,還請留言指正,謝謝您的指教
#影片程式碼
library(naniar)
data("iris")
iris <- iris[,-c(5)]
any_na(iris)
library(randomForest)
model <- randomForest(Sepal.Length ~ Sepal.Width+Petal.Length+Petal.Width,
data = iris,
importane = T, proximity = T,
do.trace = 100,na.action = na.roughfix)
par(mfrow=c(1,1))
plot(model)
importance(model)
library(rminer)
rf <- Importance(model,iris,measure="AAD")
rf$imp
par(mfrow=c(1,3))
boxplot(iris$Sepal.Width)$out
boxplot(iris$Petal.Length)$out
boxplot(iris$Petal.Width)$out
#因為離群值不多,所以先不轉
n <- nrow(iris)
set.seed(1117)
subiris <- sample(seq_len(n), size = round(0.7 * n))
traindata <- iris[subiris,]
testdata <- iris[ - subiris,]