-2

I am using ELKI in order to perform location clustering with DBSCAN and OPTICS. My data set include 30 participants but it is not labeled but I do have pair of coordinates (e.g. home, work, etc) as each participant's frequent places.

I want to know that these pair of coordinates belong to which cluster (for each person). One of the way is to check each pair against each of the cluster manually using some minimum distance threshold.

What could be the better way to achieve this?

Has QUIT--Anony-Mousse
  • 76,138
  • 12
  • 138
  • 194
user1124825
  • 359
  • 5
  • 16

1 Answers1

2

Can you format your input data as this:

123 456 work1
124 457 work1
789 123 home2
123 123 unknown

The labels should be non numeric, that's why I chose "work1", "work2" etc. for this example.

Then ELKI can automatically evaluate the result.

Erich Schubert
  • 8,575
  • 2
  • 26
  • 42