我在数据块上绘制 Xgboost 决策树时遇到问题。XGboost 是为 python 安装的,这使得在这个环境中工作时有些奇怪。
import xgboost as xgb
from xgboost import plot_importance
gbm=xgb.XGBClassifier().fit(X_train, y_train)
xgb.plot_tree(gbm)
这给出了一个错误:
未能执行 ['dot', '-Tpng'],请确保 Graphviz 可执行文件位于系统的 PATH 上。
我已将 graphviz 作为一个包安装在 databricks 端。
桃花长相依
相关分类