2017-03-07 31 views
2

這裏是我的代碼:總結(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 

我在哪裏可以找到彙總的解釋呢?

+0

我想你是指隨機森林。 –

回答

2

功能summary對於randomForest確實執行得很好/與其他模型上的總結不一致。它只是打印出一些內部變量,它們的類型和長度。可以找到內部變量的詳細信息here

我們可以通過print(fit)獲取一些(最小)信息,使用fit$forest獲取更多詳細信息。 Leo的原始代碼是用Fortran編寫的,目前的實現是使用Andy的C++。一些討論可以發現here

+0

非常感謝。在Leo Breiman的頁面上,我似乎無法找到「呼叫」(摘要的第一行)。你的意思是說'沒有很好地執行'? – user1700890

+1

@ user1700890是的。我的意思是RF的摘要不如其他型號的摘要。或者它不符合「R」標準「 – hxd1011