我有.txt文件,我打开它并将其保存为 .csv 文件。
现在我尝试在weka中打开它,我遇到了这种类型的错误:
Null
。
答案 0 :(得分:1)
Weka使用 ARFF 作为标准数据文件格式。
由于您还没有给出新创建的 CSV 的示例,我建议您阅读 这是关于Weka中的 CSV 文件。 http://weka.wikispaces.com/Can+I+use+CSV+files%3F
我的意见是你应该像ARFF格式一样格式化你的数据,并且你不会有任何问题。
这是一个小的示例:
@relation ball
@attribute color {white, orange, brown}
@attribute diameter real
@attribute forma {circle, oval}
@attribute weight real
@attribute type {fotbal, pingpong, basket}
@data
white,10,circle,1000,fotbal
white,9,circle,800,fotbal
orange,1,circle,10,pingpong
white,1,circle,10,pingpong
brown,15,circle,1300,basket
brown,16,circle,1400,basket
white,9,circle,901,fotbal
white,10,circle,850,fotbal
orange,1,circle,8,pingpong
white,1,circle,9,pingpong
brown,16,circle,1350,basket
brown,16,circle,1401,basket