2

我有一些数据,我正在处理它并以一种生成 .arff 文件的方式对其进行转换,如下所示:

............

@attribute murdered_to numeric
@attribute envy.although_it numeric
@attribute vampire_that numeric
@attribute list_without numeric
@attribute award_at numeric
@attribute @% numeric
@attribute the_addict numeric
@attribute the_drag numeric
@attribute card_against numeric
@attribute communications_mainly numeric
@attribute clue_for numeric
@attribute justified.a numeric
@attribute superb_learning numeric
@attribute ford_escape numeric
@attribute a_life-changing numeric
.
.
.

这只是属性列表的一部分。我需要在 weka 中打开 arff 文件,但它会引发主题中提到的错误。错误指向该行:

@attribute the_addict numeric

我无法在引发错误的文件中找到错误。

4

1 回答 1

4

我很确定错误在您引用的那一行之前

@attribute @% numeric

您的属性名称无效,它必须以字母字符开头,如etov所指向的 ARFF 文档中所指定。

@attribute 语句的格式为:

@attribute <attribute-name> <datatype>

其中必须以字母字符开头。如果名称中要包含空格,则必须引用整个名称。

于 2013-03-18T11:13:26.343 回答