minsup
Minimum support, abbreviated minsup, is a user-defined threshold used in frequent itemset mining. In a dataset of transactions, each itemset has a support value representing the proportion (or count) of transactions that contain the itemset. An itemset is considered frequent if its support is at least the minsup value. Support can be expressed as a relative proportion of all transactions or as an absolute count.
Minsup is a central parameter in algorithms such as Apriori and FP-Growth. It serves to prune the
Choosing an appropriate minsup involves trade-offs. A high minsup yields a small set of very common itemsets
Practical notes: minsup is not a measure of statistical significance or quality of a rule; it merely