I get error while loading Arff file, and when i load the csv file and click "visualize all", nothing can be visualized and the screen gives "Too many values to display". Here is the error while loading Arff file:

Error while loading Arff file

share|improve this question
    
Seems like you have not declared any attributes.Try to use the format defined here : cs.waikato.ac.nz/ml/weka/arff.html – xro7 Dec 5 '16 at 14:48

For your first error you need to declare attributes for the arff file as defined here: http://www.cs.waikato.ac.nz/ml/weka/arff.html

Your second error states that there is no @relation defined so you need to add it above your attributes declaration as shown in the link above.

So you need to add the following line:

@relation yourRelationName
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.