Tagged Questions
1
vote
1answer
124 views
Clustering/Nearest Neighbor
I have thousands to ten-thousands of data points (x,y)coming from 5 to 6 different source. I need to uniquely group them based on certain distance criteria in such a way that the formed group should ...
1
vote
0answers
132 views
find the nearest 'n' neighbour in clustering algorithm of mahout
When I am running the apache mahout clustering examples of DisplayDirichlet.java, DisplayClustering.java or etc. the output is in graphical format.
How do I find the nearest neighbor containing 'n' ...
-1
votes
1answer
378 views
Find the number of nearest neighbour cluster
I clustered my data set using fuzzy c-means. Now whenever a new data set comes in picture, I want to know the number of nearest neighbourhood from each cluster to the coming point. Please provide me ...
1
vote
1answer
253 views
Nearest neighbor and pattern recognition with Haskell
Here's a simplified version of the 3 data sets I have:
Set A = [1, 1, 2, 2, 1, 2, 2, 1]
Set B = [2, 2, 1, 2, 2, 1, 1, 3]
Set C = [8, 4, 4, 4, 4, 9, 8, 4]
Does Haskell have any built in features for ...
2
votes
3answers
611 views
Clustering problem
I've been tasked to find N clusters containing the most points for a certain data set given that the clusters are bounded by a certain size. Currently, I am attempting to do this by plugging in my ...