Thanks to visit codestin.com
Credit goes to github.com

Skip to content

vipulchaskar/kmeans

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

k-means algorithm

Python implementation of k-means clustering algorithm with graphs created with matplotlib.

How it works

Run the program as "python kmeans.py". It opens and reads data from a file "input.txt" which is in the same directory. It shows this data on a 2D scatterplot to the user. Then it accepts number of clusters to create (k) and begins running the k-means algorithm. After it finishes execution, it shows a similar 2D plot but with points color coded based on the cluster they belong to. It will also show the corresponding cluster centres for each cluster - in its unique color.

As of now, the implementation is limited to 2 features in the input data i.e. 2 dimensional training sets.

Screenshots

Alt tag

The red points are each one training example represented by (X1i, X2i). Alt tag

Each color i.e. Red, Blue, Green and Brown represents one cluster and the bold points represent their cluster centres.

Requirements

  • Python 2.7.x
  • Library - matplotlib
  • Library - numpy

About

Python implementation of k-means clustering algorithm with graphs.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages