這裏是我的代碼:總結(randomforest) - 如何閱讀?
library(randomforest)
fit <- randomforest(var_1~.,data = mydf, ntree=100, importance =TRUE)
summary(fit)
下面是輸出的外觀:
Length Class Mode
call 5 -none- call
type 1 -none- character
predicted 322479 factor numeric
err.rate 300 -none- numeric
confusion 6 -none- numeric
votes 644958 matrix numeric
oob.times 322479 -none- numeric
classes 2 -none- character
importance 24 -none- numeric
importanceSD 18 -none- numeric
localImportance 0 -none- NULL
proximity 0 -none- NULL
ntree 1 -none- numeric
mtry 1 -none- numeric
forest 14 -none- list
y 322479 factor numeric
test 0 -none- NULL
inbag 0 -none- NULL
terms 3 terms call
我在哪裏可以找到彙總的解釋呢?
我想你是指隨機森林。 –