2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Python scikit-learnで実施した決定木の結果を可視化する

Last updated at Posted at 2020-03-15

PCを新しくして、決定木を初めてやろうとしたら、可視化する環境にする方法を忘れていて少し時間がかかってしまいました。ここに、自分用の備忘メモの意味を込めて記載します。

graphvizの公式ページ
ここからDownloadのページに行き、以下のstable版をダウンロードする。
Graphviz_install.png

.msiファイルをダウンロードします。
ダウンロードしたこのmsiファイルをダブルクリックしてインストールします。
Graphviz_wizard.png

コマンドプロンプト

pip install graphviz
pip install pydotplus
pip_install.png

そして、「dot.ext」ファイルがあるディレクトリをPathに追加する。
システムの詳細設定を開いて、環境変数をクリックします。
システムの詳細設定.png

そしてPathに「dot.ext」があるディレクトリを追加します。私の場合は
C:\Users\ユーザー名\Anaconda3\envs\仮想環境名\Library\bin\graphviz
でした。
path.png

これで可視化できるようになりました!
Treeできあがり.png

2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?