Reputation: 179
I have a 2 dimensional array forming a table:
[color][number][shape ]
-------------------------
[black][10 ][square ]
[black][10 ][circle ]
[red ][05 ][triangle]
[red ][04 ][triangle]
[green][11 ][oval ]
and what I want to do is group largest common denominators, such that we get:
3 groups
I wrote code that will handle a 2 "column" scenario, then I needed to adjusted it for 3 and I was figuring I might as well do it for n. I wanted to check first if there is some literature around this but I can't think of what to start looking for!
Upvotes: 1
Views: 155
Reputation: 37192
Data Clustering Algorithms is the closest thing I could find.
And your space is 3-dimensional where each point is identified by 3-tuple (color,number,shape)
.
Upvotes: 1