火花中的 FPGGrowth,结果令人困惑
FPGrowth in spark with confused result
我在 spark 中使用 FPGrowth。输入矩阵喜欢:
enter image description here
结果是:
enter image description here
我的疑惑是为什么【I2 I1 I5】这一项没有出现在结果中,它也出现了两次
某些项目集可能不会出现的原因可能是由于 FP Growth 修剪了支持水平低于您设置的最低支持水平的结果。尝试降低最低支持水平。
我在 spark 中使用 FPGrowth。输入矩阵喜欢: enter image description here
结果是: enter image description here
我的疑惑是为什么【I2 I1 I5】这一项没有出现在结果中,它也出现了两次
某些项目集可能不会出现的原因可能是由于 FP Growth 修剪了支持水平低于您设置的最低支持水平的结果。尝试降低最低支持水平。