Collaboration diagram for SeqFrequentFilter< IT_R >:
Public Member Functions | |
SeqFrequentFilter (IT_R &it_r) | |
void | findFrequentItems (std::vector< std::pair< counter_t, item_t > > &freq_items_with_counters, counter_t &nr_of_transactions, counter_t &min_supp, bool relative=false, double relminsupp=0.0) |
if relative=true then relminsupp will be used to calculate the absolute minimum support, which will be stored in min_supp. | |
Private Attributes | |
IT_R & | it_r |
It just reads in transactions one-by-one, increases the counter of the items, and then selects the frequent items.
IT_R | the transaction reader |
Definition at line 19 of file SeqFrequentFilter.cpp.
|
|
|
if relative=true then relminsupp will be used to calculate the absolute minimum support, which will be stored in min_supp. relminsupp is a real number in [0,1]. (Thus not a percentage) Definition at line 47 of file SeqFrequentFilter.cpp. References SeqFrequentFilter< IT_R >::it_r. Referenced by main(). |
|
Definition at line 34 of file SeqFrequentFilter.cpp. Referenced by SeqFrequentFilter< IT_R >::findFrequentItems(). |