前提・実現したいこと
決定木分析をしようとしたところ、掲題の「GraphViz's executables not found」が発生しています。
同題名の質問を参考にして、エラーを解消しようとしましたが、できておりません。
(パスを追加する場所が間違っているのかもしれません)
Pythonによるあたらしいデータ分析の教科書を用いてPythonを勉強している初学者です。
初心者でも分かるようにご回答いただければ幸いです。
発生している問題・エラーメッセージ
InvocationException Traceback (most recent call last)
<ipython-input-15-05444a76591d> in <module>
16 #決定木のプロットを出力
17 graph = graph_from_dot_data (dot_data)
---> 18 graph.write_png("C:\ProgramData\Anaconda3\lib\site-packages\pydotplus\graphviz.py")
C:\ProgramData\Anaconda3\lib\site-packages\pydotplus\graphviz.py in <lambda>(path, f, prog)
C:\ProgramData\Anaconda3\lib\site-packages\pydotplus\graphviz.py in write(self, path, prog, format)
C:\ProgramData\Anaconda3\lib\site-packages\pydotplus\graphviz.py in create(self, prog, format)
InvocationException: GraphViz's executables not found
該当のソースコード
from sklearn.datasets import load_iris
from sklearn.model_selection import train_test_split
from sklearn.tree import DecisionTreeClassifier
iris = load_iris()
X, y = iris.data, iris. target
X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.3, random_state=123)
tree = DecisionTreeClassifier(max_depth=3)
tree.fit(X_train, y_train)
pip install pydotplus
from pydotplus import graph_from_dot_data
from sklearn.tree import export_graphviz
dot_data = export_graphviz (tree, filled=True,
rounded=True,
class_names=["Setona",
"Vercicolor",
"virginica"],
feature_names=["Sepal Length",
"Sepal Width",
"Petal Length",
"Petal Width"],
out_file=None)
graph = graph_from_dot_data (dot_data)
graph.write_png("C:\ProgramData\Anaconda3\lib\site-packages\pydotplus\graphviz.py")
試したこと
最後の下記パス先の記載が間違っているのかと考え、いくつかのパスを追加したり、新しく出力したい適当なファイル名を記載したり等しましたが、解消しませんでした
graph.write_png("C:\ProgramData\Anaconda3\lib\site-packages\pydotplus\graphviz.py")
補足情報(FW/ツールのバージョンなど)
Anaconda3でJupyternotebook6.0.0を使用しています。
回答1件
あなたの回答
tips
プレビュー