.txtファイルがあり、それを開いて.csvファイルとして保存しました。
今、私はそれをwekaで開こうとしましたが、このタイプのエラーが発生しました:
Null
。
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