タグ

aprioriに関するkuzu_masatoのブックマーク (2)

  • How to use the apriori program

    UNIXの場合 CNSにログインして、自分のホームディレクトリにある、.cshrc というファイルに次の一行を追加して下さい。 なお、この変更をする前に、必ず以下のようにしてファイルのバックアップをとる ようにして下さい。 % cp .cshrc .cshrc-backup その後で以下の内容を元のファイルに追加して下さい。 set path=($path /home/soh/data_mining/apriori2.7/src) そして設定の変更を読み込ませるため、以下のように入力します。 % source ~/.cshrc % rehash 最後に適当なディレクトリで % cp -r ~soh/data_mining/apriori2.7/ex ex と入力して下さい。これでセットアップは完了です。 Windowsの場合 まず以下から、 apriori.zip と apr

    kuzu_masato
    kuzu_masato 2009/12/17
    aprioriプログラムの使用法。現行のバージョンとは多少動きが違う(?)
  • Christian Borgelt's Web Pages

    Description Apriori is a program to find association rules and frequent item sets (also closed and maximal as well as generators) with the Apriori algorithm [Agrawal and Srikant 1994], which carries out a breadth first search on the subset lattice and determines the support of item sets by subset tests. This implementation is pretty fast as it uses a prefix tree to organize the counters for the it

    kuzu_masato
    kuzu_masato 2009/12/17
    aprioriアルゴリズムによる関連性解析プログラム
  • 1