小编Ros*_*han的帖子

在 sklearn 中可视化决策树

当我想可视化这棵树时,我收到了这个错误。

我已经展示了导入的所需库。jupiter-notebook 有预期的原因吗?

from sklearn import tree
import matplotlib.pyplot
from sklearn.tree import DecisionTreeClassifier
from sklearn.model_selection import train_test_split
from sklearn.datasets import load_breast_cancer
cancer=load_breast_cancer()
x=cancer.data
y=cancer.target
clf=DecisionTreeClassifier(max_depth=1000)
x_train,x_test,y_train,y_test=train_test_split(x,y)
clf=clf.fit(x_train,y_train)
tree.plot_tree(clf.fit(x_train,y_train))
Run Code Online (Sandbox Code Playgroud)

AttributeError: 模块“sklearn.tree”没有属性“plot_tree”

python tree sklearn-pandas jupyter-notebook

7
推荐指数
1
解决办法
2万
查看次数

标签 统计

jupyter-notebook ×1

python ×1

sklearn-pandas ×1

tree ×1