Thursday, 8 December 2016

Kmeans On Jupyter

K Means Clustering on Iris Data set on Jupyter notebook

K Means clustering is an unsupervised machine learning algorithm.  During the learning process the error between the predicted outcome (predY) and actual outcome (y) is used to train the system. In an unsupervised method such as K Means clustering the outcome (y) variable is not used in the training process.

In this example we look at using the IRIS dataset.
Steps to go ahead with :-
  • Importing the sample IRIS dataset
  • Converting the dataset to a Pandas Dataframe
  • Visualising the classifications using scatter plots
  • Simple performance metrics
Requirements: I am using Anaconda Python Distribution which has everything you need including Pandas, NumPy, Matplotlib and importantly SciKit-Learn. I am also using iPython Notebook but you can use whatever IDE you want.

You can find the codes for the same in the below screenshot :



The plot showing the clusters of the flowers on the basis of petal width, sepal length and petal length:





So, we have clustered the iris dataset into 3 clusters using Kmeans algorithm.
Use can find the notebook for the same here : sushovan_notebook
For the iris dataset : sushovan's_iris

Enjoy Machine learning !!
😁😁





1 comment: