1
17kviews
How FP tree is better than Apriori Algorithm?
1 Answer
written 8.8 years ago by | • modified 8.8 years ago |
Apriori Algorithm :
FP Growth:
This comparative study shows how FP(Frequent Pattern) Tree is better than Apriori Algorithm.
Parameters | Apriori Algorithm | Fp tree |
---|---|---|
Technique | Use Apriori,join and prune property. | It constructs conditional,frequent pattern tree and conditional pattern base from database which satisfy minimum support |
Memory utilization | It requires large amount of memory space due to large number of candidates generated. | It requires small amount of memory space due to compact structure and no candidate generation. |
No of scans | Multiple scans for generating candidate sets. | Scans the Database only twice. |
Time | Execution time is more as time is wasted in producing candidates every time. | Execution time is lesser than Apriori due to the absence of candidates. |