1

I am a research scholar in data mining. I'm interested in C# implementation of K-Means clustering algorithm for mixed numeric and categorical data.

IgorS
  • 5,474
  • 11
  • 31
  • 43

1 Answers1

1

The solution is described here: K-Means clustering for mixed numeric and categorical data

C# implementation can be found in ALGLIB library, which I strongly recommend: http://www.alglib.net/translator/man/manual.csharp.html#gs_packages

IgorS
  • 5,474
  • 11
  • 31
  • 43
  • ALGLIB looks really interesting! I'm a Data Scientist working in a .NET shop, and am looking to learn C#. Could you tell me a little more about the library? – neuron Nov 21 '14 at 09:38
  • Hi, in couple words... Old, solid, rich enough, made by one author. For many languages. I have used it several times for Dot Net. – IgorS Nov 21 '14 at 12:36