运行 catboost 网站 ( https://catboost.ai/docs/concepts/python-reference_catboost_calc_feature_statistics.html ) 上给出的示例脚本时,最后没有出现任何绘图,而只有空白区域。任何建议可能是什么原因?
from catboost import CatBoost
import numpy as np
train_data = np.random.rand(200, 10)
label_values = np.random.rand(200)
model = CatBoost()
model.fit(train_data, label_values)
res = model.calc_feature_statistics(train_data,
label_values,
feature=2,
plot=True)