This is a project of classification of employee on the basis of their age and income. Objective of this project is to classify different groups of employee based upon the income and age group. Here, we found three groups for the given dataset (income.csv), after predicting for set ([['40','4500']]) we found it belongs to the cluster 0 such that red community. The project is followed by following steps:
- Importing some basic libraries for solving classification problem (KMeans Classification)
- Importing the csv file into pandas dataframe
- Ploting the data for better visualization into scatter plot
- Building classification object and fitting the data in the model
- Plotting the result in scatter plot the better visualization of different cluster found by the classification model.

- For the best results, scaling the data and again fitting it into the model. After scaling, we can see the visualization and anlysise the difference from previous plot.

- Using Elbow method the appropriate number of clusters are found (k=3).

- In such a way, we classified the employees based upon their income and age group.
In the end, the same model is used for irir flower dataset for the classification of ["petal length (cm)","petal width (cm)"]. And by elbow method we found the value of k is 3.
