我开发了一个模型来进行回归。 我现在需要给它一个数据集作为输入并接收预测结果作为输出。 我的目标属性是数字,我想我需要填充" null"输入数据集中的值。
这是我的代码,用于将target属性的值设置为null:
//a method to vacate a given column situated in a given index
private Instances vacateAttribute(Instances dataCSV, int index) {
Instance instance ;
//at each iteration, fill the value of the "Nombre" column in the given index with a null value
for (int i=0; i < dataCSV.numInstances();i++) {
//read the value of each row of dataCSV
instance = dataCSV.instance(i);
instance.setValue(index,null ); //attribute("DureeNumeric"). index 7
}
return dataCSV;
}
我得到了这个例外,告诉我该属性既不是名义也不是字符串。
java.lang.IllegalArgumentException: Attribute neither nominal nor string!
at weka.core.AbstractInstance.setValue(AbstractInstance.java:501) ~[weka-stable-3.8.0.jar:na]
那么我可以将我的数字属性值设置为null吗?
先谢谢
答案 0 :(得分:0)
我通过在同一列中分配预测结果而不是用Null值填充现有列并在新列中分配预测结果来对此进行说明。