I'm using mahout to run k-means clustering, and I got a problem of identifying the data entry when clustering, for example I have a 100 data entries
id data
0 0.1 0.2 0.3 0.4
1 0.2 0.3 0.4 0.5
... ...
100 0.2 0.4 0.4 0.5
after clustering, I need to get the id back from the cluster result to see which point belongs to which cluster, but there seems no method to maintain the id.
In the official mahout example of clustering synthetic control data, only data were inputted to mahout without id like
28.7812 34.4632 31.3381 31.2834 28.9207 ...
...
24.8923 25.741 27.5532 32.8217 27.8789 ...
and the cluster result only have cluster-id and point value:
VL-539{n=38 c=[29.950, 30.459, ...
Weight: Point:
1.0: [28.974, 29.026, 31.404, 27.894, 35.985...
2.0: [24.214, 33.150, 31.521, 31.986, 29.064
but no point-id exists, so, can anyone have idea on how to add maintain a point-id when doing mahout clustering? thank you very much!