4

On the explorer in weka you can perform clustering on data then use the visualisation to save a new arff file with the cluster assignments as attributes.

Is there a way to do this automatically by calling executables on the command line?

Tom
  • 215
  • 1
  • 7
  • 19

1 Answers1

2

If anyone else is having this problem, you can try using weka.filters.unsupervised.attribute.AddCluster. The -W argument should contain your clustering algorithm and you can use the -i and -o as you would with any other filter to save your new arff.

Anonymous
  • 21
  • 2