Research Article

Identifying the Association Rules between Clinicopathologic Factors and Higher Survival Performance in Operation-Centric Oral Cancer Patients Using the Apriori Algorithm

Algorithm 1

Pseudocode of the Apriori algorithm.
01: = } //see Section 2.2.1
02: set k = 2
03: while ( )
04: = apriori-gen ( ) = candidate -itemsets}
// see Section 2.2.2
05:if ( = )
06: return
07:end if
08:for (all t )
09:  = subset ( , t) // see Section 2.2.3
10: for (all )
11: c.count++
12: end for
13:end for
14: = }
15:k++
16: end while