我正在对从 WEKA 网站获得的关于甲状腺功能减退症的数据集进行关联挖掘。
每个实体都是一个人。每个人都有一个名为 class 的属性,其中可以包含 {negative, primary_hypothyroidism, secondary_hypothyroidism}
class = {negative, primary_hypothyroidism, secondary_hypothyroidism}
我想删除整个负面的人。我如何在 WEKA 中执行此操作?
我正在对从 WEKA 网站获得的关于甲状腺功能减退症的数据集进行关联挖掘。
每个实体都是一个人。每个人都有一个名为 class 的属性,其中可以包含 {negative, primary_hypothyroidism, secondary_hypothyroidism}
class = {negative, primary_hypothyroidism, secondary_hypothyroidism}
我想删除整个负面的人。我如何在 WEKA 中执行此操作?
有一个名为“RemoveWithValues”的过滤器可以满足您的要求。
如果您使用的是 Weka GUI,您可以执行以下操作:
选择过滤器 > 无监督 > 实例 > RemoveWithValues 下的过滤器
单击包含描述过滤器的文本的框。
确定“attributIndex”(您的班级所在的索引)。
确定“nominalIndices”(在您的情况下是第一个)。
点击申请!
如果您使用的是 Java 代码,您可以在此处阅读有关应用过滤器的信息。