我第一次使用CRAN的xgboost包。
创建模型:
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
任何想法为什么?
答案 0 :(得分:4)
xgb.importance适用于booster = gbtree
我没有找到任何文档,但看起来xgb.importance仅对树方法有效