E
Erik Nodland
Hi Everyone,
Just after some ideas and suggestions on how to do this. I have a large
amount of numeric data which I would like to group given a distance as a
parameter.
IE. If my dataset was simply 1, 5, 9,10,11,16,17,25,29 and I pass in a
distance of 2 then I would want to end up with groups like
1, 5, (9,10,11), (16,17) ,25,29
So [9,10,11] is grouped because each number is within a distance of 2 from
each other. Equally [16,17] is grouped because of the same.
To make this more complicated each numeric would actually be a x, y plot. So
the actual data would be more like
[10,12], [20,21] , [21,23], [30,31] etc. Each one having 2 sets of numbers.
In this case the grouping would be
[10,12], ([20,21][21,23]), [30,31]. So [20,21] and [21,23] are grouped
because x in both sets are within 2 and y in both sets are within 2.
any body have any good ideas to start me off
Thanks very much in advance
SoS
Just after some ideas and suggestions on how to do this. I have a large
amount of numeric data which I would like to group given a distance as a
parameter.
IE. If my dataset was simply 1, 5, 9,10,11,16,17,25,29 and I pass in a
distance of 2 then I would want to end up with groups like
1, 5, (9,10,11), (16,17) ,25,29
So [9,10,11] is grouped because each number is within a distance of 2 from
each other. Equally [16,17] is grouped because of the same.
To make this more complicated each numeric would actually be a x, y plot. So
the actual data would be more like
[10,12], [20,21] , [21,23], [30,31] etc. Each one having 2 sets of numbers.
In this case the grouping would be
[10,12], ([20,21][21,23]), [30,31]. So [20,21] and [21,23] are grouped
because x in both sets are within 2 and y in both sets are within 2.
any body have any good ideas to start me off
Thanks very much in advance
SoS