简体   繁体   中英

What are the different pattern evaluation measures in data mining?

在数据挖掘中,使用不同的算法(例如Apriori算法,FP-Tree等)发现频繁项集。那么这些模式评估方法吗?

You can try Association Rules (apriori for example), Collaborative Filtering (item-based or user-based) or even Clustering.

I don't know what you are trying to do, but if you have a data-set and you need to find the most frequent item-set you should try some of the above techniques.

If you're using R you should explore the arules package for association rules (for example).

Apriori algorithm and FP-tree algorithm is used to find frequent itemsets for the given transactional data. This would help in market basket analysis applications. For pattern evaluation, there are many components namely:

  1. support,
  2. confidence,
  3. Lift,
  4. Imbalance ratio, etc.

More details can be seen at the paper:

Selecting the right interestingness measure for association patterns by Pang Ning Tan, Vipin Kumar, Jaideep Srivastava, KDD 2002.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM