Was bedeutet negativer % - IncMSE in RandomForest-Paket bedeuten?

Ich verwendet RandomForest für eine regression-problem. Ich verwendet importance(rf,type=1) um die %IncMSE für die Variablen und einer von Ihnen hat einen negativen %IncMSE. Bedeutet dies, dass diese variable ist schlecht für das Modell? Ich suchte im Internet nach ein paar Antworten, aber ich finde nicht klar.
Fand ich auch etwas seltsam, in der Modell-übersicht ( unten angehängt), Es scheint, dass nur ein Baum verwendet wurde, obwohl ich den vorgegebenen ntrees als 800.

Modell:

rf<-randomForest(var1~va2+var3+..+var35,data=d7depo,ntree=800,keep.forest=FALSE, importance=TRUE)

summary(rf)
                Length Class  Mode     
call                6  -none- call     
type                1  -none- character
predicted       26917  -none- numeric  
mse               800  -none- numeric  
rsq               800  -none- numeric  
oob.times       26917  -none- numeric  
importance         70  -none- numeric  
importanceSD       35  -none- numeric  
localImportance     0  -none- NULL     
proximity           0  -none- NULL     
ntree               1  -none- numeric  
mtry                1  -none- numeric  
forest              0  -none- NULL     
coefs               0  -none- NULL     
y               26917  -none- numeric  
test                0  -none- NULL     
inbag               0  -none- NULL     
terms               3  terms  call 
InformationsquelleAutor mql4beginner | 2015-01-13
Schreibe einen Kommentar