R:如何找到项目集的提升?
R: How to find the lift of an itemset?
我有一个包含 A-Z 项目的交易数据集。现在我需要找到项目集的提升:{A, B}。我应该如何使用 R?
提升仅在关联规则上定义。参见 https://michael.hahsler.net/research/association_rules/measures.html#lift
函数 interestMeasure()
中包 arules
中的项目集有一个 "undocumented" 提升实现。它被定义为
lift(X) = support(X) / product_(i in X) support(i)
项集的支持度大于项集中所有项的支持度的乘积。 注意:这不是标准定义!
我有一个包含 A-Z 项目的交易数据集。现在我需要找到项目集的提升:{A, B}。我应该如何使用 R?
提升仅在关联规则上定义。参见 https://michael.hahsler.net/research/association_rules/measures.html#lift
函数 interestMeasure()
中包 arules
中的项目集有一个 "undocumented" 提升实现。它被定义为
lift(X) = support(X) / product_(i in X) support(i)
项集的支持度大于项集中所有项的支持度的乘积。 注意:这不是标准定义!