/kmeans-clustering

Exploration of data mining clustering through the k-means algorithm.

Primary LanguagePython

K-means algorithm

Author: Kevin Funderburg

About

This project will explore the data mining concept of clustering by implementation of the k-means algorithm.

Usage

Command line structure:

  • On macOS:

      python3 kmeans.py -k [int] -i [input file name]
    
  • On linux:

      python kmeans.py -k [int] -i [input file name]
    

Examples

python kmeans.py -k 2 -i "input1.txt"
python kmeans.py -k 4 -i "input4.txt"
python kmeans.py -k 3 -i "input3.txt"

Licensing & Thanks

This project is released under the MIT License.

Changelog

  • v1.0.0