我正在尝试将我的数据集格式化为weka arff文件。这是我的arff文件的一个示例:
@relation my_relation
@attribute 'attrib_1' numeric
@attribute 'attrib_2' numeric
@attribute 'attrib_3' numeric
...
@attribute 'class' {1,2,3,4,5}
@data
6,6,55,0,0,0,18.9,0,1,2,'?',14,15,20,'?','?','?','?',28,29,1
54,25,19,4.85,0,1,10,13,'?','?','?','?','?','?',15,16,19,20,21,0,3
...
我的特征是数值和实数值,但在不同情况下(实例)每个特征都有一些缺失值。我该如何确定我的功能包含缺失值? (我使用'?'表示缺少值,但尝试打开mydata.arff时出现此错误
number expected, read token[?], line 746
) 修改:我改变了'?'至 ?并尝试加载该文件。这次发生以下错误:
nominal value not declared in header, read Token[86], line 746
答案 0 :(得分:2)