1

我是 Weka 的新手,遇到了一个问题。我有一个包含大约 13 个特征的数据集(全是二进制的)。某些功能仅适用于一小组数据。当我使用 Weka 运行关联规则挖掘时,它基于特征值为 0(0 表示该特征不适用)来识别属性之间的强关联。

我希望仅针对积极特征确定相关关系。我该怎么做呢?

4

1 回答 1

3

这应该是默认行为,恕我直言。

In typical APRIORI use cases, most items are missing from most transactions.

Maybe convert your items to a non-numeric type and subsitute 0 for missing value? The classic example uses this format:

@relation supermarket
@attribute 'department1' { t}
...
@data
?,?,...,t,...

where ? indicates missing, t indicates presence.

于 2014-06-03T08:12:57.040 回答