我正在对我的数据应用以下过滤器。
string[] options = new string[2];
options[0] = "-R";
options[1] = "1-2";
Remove remove = new Remove(); // new instance of filter
remove.setOptions(options);
remove.setInputFormat(train);
train = Filter.useFilter(train, remove);
unlabeled = Filter.useFilter(unlabeled, remove);
但是,我想在最后打印标记数据时添加已删除的字段。
如何重新添加列?
谢谢
PS>。还有一个问题,我可以忽略字段而不是删除它们吗?