4
我第一次使用來自CRAN的xgboost包。xgboost使用R xgb.importance拋出錯誤
創建一個模型:
bst <- xgb.train(data = dtrain, booster = "gblinear",
objective = "reg:linear", max.depth = 5, nround = 2,watchlist=watchlist)
importance_matrix <- xgb.importance(model = bst)
當我打電話xgb.importance
我得到一個錯誤:
Error in readLines(filename_dump) : 'con' is not a connection
任何想法,爲什麼?