quoted_nominal.arff 286 B

12345678910111213
  1. % Regression test for issue #10232 : Exception in loadarff with quoted nominal attributes
  2. % Spaces between elements are stripped by the parser
  3. @relation SOME_DATA
  4. @attribute age numeric
  5. @attribute smoker {'yes', 'no'}
  6. @data
  7. 18, 'no'
  8. 24, 'yes'
  9. 44, 'no'
  10. 56, 'no'
  11. 89,'yes'
  12. 11, 'no'