Class AprioriEx2

java.lang.Object
com.imsl.test.example.datamining.AprioriEx2

public class AprioriEx2 extends Object

Applies the Apriori algorithm to separate sets of transactions.

This example demonstrates how to apply Apriori to separate chunks of data and then combine the results. This is a strategy for using Apriori on distributed data. The data are two separate blocks of 50 transactions involving five different products. Recall that in the data, transaction ID appears first, and then the product ID. The minimum support percentage is set to 0.30, giving a minimum required support of 30 transactions overall.

See Also:
  • Constructor Details

    • AprioriEx2

      public AprioriEx2()
  • Method Details

    • main

      public static void main(String[] args)