1
3

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.

orange3のインストールと動作確認

Posted at

Orangeは、スロベニアのリュブリャナ大学を中心に1996年から開発されているオープンソースのデータ視覚化、機械学習、データマイニング用ツールキットです。この記事では、pipコマンドで仮想環境を作成してorange3をインストールし、動かすまでの作業例について記述します。

  • 動作確認環境
  • windows 10, Microsoft C++ Build Tools 2019
    https://visualstudio.microsoft.com/visual-cpp-build-tools/
  • python 3.9.5, orange-canvas-core 0.1.21, orange-widget-base 4.13.1
    (※ 動作確認時、orangedatamining.com からダウンロード可能な Standalone installer のバージョンは Orange3-3.29.3)
  1. 作業用フォルダを作成し、そのフォルダに移動
    mkdir orange3_test
    cd orange3_test
  2. python の仮想環境を作成してアクティベート
    python -m venv venv
    venv\Scripts\activate
  3. pip コマンドで orange3 パッケージをインストール
    pip install orange3
  4. orange3を起動
    python -m Orange-canvas もしくは orange-canvas

(参考) 起動時に表示される examples の classification のスクリーンショット
iris データを読み込み決定木よる品種分類を実施
image.png
iris データを散布図の表示例
image.png

1
3
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
1
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?