简体   繁体   English

我应该使用哪种算法来分析所有商品之间的关系?

[英]Which algorithm should I use to analyze the relation between all commodities?

So now I have a list of commodities which bought by many different people. 因此,现在我有一个清单,列出了许多人购买的商品。

1. bread, bear, egg, apple
2. carrot, water, glasses
3. apple, egg, bottle
4. meat, egg, soup, juice
5. water, carrot, bear
6. apple, carrot, water
....

I want to know which commodity combo is most popular. 我想知道哪种商品组合最受欢迎。

The output of my example is likely this: 我的示例的输出可能是这样的:

carrot, water

because they are bought together more popular by other commodities combo. 因为它们被其他商品组合更受欢迎。

I know the algorithm might be belong to Data Mining. 我知道该算法可能属于数据挖掘。

However, I don't know what the keyword is. 但是,我不知道关键字是什么。

I only need the keyword (maybe the algorithm name) and I will do the research by myself! 我只需要关键字(也许是算法名称),我将自己做研究!

Thank you all. 谢谢你们。 :) :)

You are looking for the subdomain known as 您正在寻找的子域称为

Frequent Itemset Mining 频繁项集挖掘

in particular, the algorithm APRIORI. 特别是算法APRIORI。

斯坦福CS246 courese的“ Frequent Itemsets ”讲座可能会对您有所帮助。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 我应该在这种情况下使用哪种排序算法? - Which sorting algorithm should I use in this scenario? 我应该使用哪种对象识别算法? - Which object recognition algorithm should I use? 我应该使用哪种哈希算法来比较文本? - Which hashing algorithm should I use to compare pieces of text? 我应该在这里使用哪种算法? 在字符串数组中查找字符串 - Which Algorithm should i use here? Finding Strings in a String Array 我应该使用哪种算法来优化代码? - Which algorithm should I use to optimize my code? 我应该使用哪种优化算法在有时间限制的情况下最大化利润? - Which optimization algorithm should I use for maximizing profit with time limitations? 我应该将哪种排序算法用于具有大量复制的列表? - Which sorting algorithm should I use for a list with a lot of replications? 我应该对频率数据使用哪种聚类算法? - Which clustering algorithm should I use for frequency data? Java中的字符串比较,应该使用哪种算法? - String comparison in Java, which algorithm should I use? 我应该使用哪种算法进行信号(声音)分类? - Which algorithm should I use for signal (sound) one class classification?
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM