Click here to Skip to main content
15,884,473 members
Articles / Programming Languages / C#

Text Documents Clustering using K-Means Algorithm

Rate me:
Please Sign up or sign in to vote.
4.92/5 (39 votes)
26 Jan 2013CPOL6 min read 286.2K   15.2K   76  
Text documents clustering using K-Means clustering algorithm.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace TextClustering.Lib
{
    /// <summary>
    /// It represents the collection of document or corpus
    /// </summary>
     class DocumentCollection
    {
        public  List<String> DocumentList { get; set; }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
United States United States
Interested in Information Retrieval, Artificial Intelligence
research and programming.Programming is my passion,I enjoy programming for the same reasons that I enjoy reading great books.What I love about writing code is the nitpicking and problem solving.

Comments and Discussions