gpt4 book ai didi

python - 什么相当于 Python 中的 rpart.plot?我想可视化我的随机森林的结果

转载 作者:行者123 更新时间:2023-11-28 16:32:02 26 4
gpt4 key购买 nike

[R] 中,您可以像这样可视化随机森林的结果(图片无耻地从互联网上盗用)。 Python中的等价物是什么?我可以使用 feature_importances_ 获得我的 sklearn 随机森林分类的​​结果,但我想知道他们将结果发送到哪个方向。我意识到在森林深处我无法检查每个分支,但也许它可以衡量概率?谢谢。

最佳答案

使用tree.export_graphviz的参数,看这个例子和图片结果:

tree.export_graphviz(clf, out_file=out, feature_names=['alcohol', 'income'],class_names=['0','1'], 
filled=True, rounded=True, special_characters=True)

graph=pydotplus.graph_from_dot_data(out.getvalue())
Image(graph.create_png())

图像结果

enter image description here

参见 jupyter notebook on githubproject details .

关于python - 什么相当于 Python 中的 rpart.plot?我想可视化我的随机森林的结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30903226/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com