有没有一种方法可以将整个随机森林放入一个图,而不是单个估计器一对一?

时间:2019-04-12 09:01:23

标签: python scikit-learn random-forest graphviz

我试图可视化整个RandomForestClassifier rfclf

export_graphviz(rfclf, out_file='Graphs/rfclfWhole.dot', 
                feature_names = x.columns,
                class_names = y,
                rounded = True, proportion = False, 
                precision = 2, filled = True)

而不是像往常一样为可视化执行以下操作:

export_graphviz(rfclf.estimators_[5], out_file='Graphs/rfclfWhole.dot', 
                feature_names = x.columns,
                class_names = y,
                rounded = True, proportion = False, 
                precision = 2, filled = True)

得到

  

NotFittedError:不适合此RandomForestClassifier实例   然而。使用此方法之前,请使用适当的参数调用“适合”。

但是我确实打过rfclf.fit

0 个答案:

没有答案