Code Monkey home page Code Monkey logo

implementation-of-k-means-clustering-for-customer-segmentation's Introduction

Implementation-of-K-Means-Clustering-for-Customer-Segmentation

Aim:

To write a program to implement the K Means Clustering for Customer Segmentation.

Equipment's Required:

  1. Hardware โ€“ PCs
  2. Anaconda โ€“ Python 3.7 Installation / Moodle-Code Runner

Algorithm:

  1. Import the necessary packages using import statement.
  2. Read the given csv file and print the number of contents to be displayed.
  3. Import KMeans and use for loop to cluster the data.
  4. Predict the cluster and plot data graphs.
  5. Display the result.

Program:

Program to implement the K Means Clustering for Customer Segmentation.
Developed by: H.Syed Abdul Wasih 
Register Number: 212221240057
import pandas as pd
import matplotlib.pyplot as plt
data=pd.read_csv("Mall_Customers.csv")
data.head()
data.info()
data.isnull().sum()
from sklearn.cluster import KMeans
wess=[]
for i in range(1,11):
    kmeans=KMeans(n_clusters=i,init="k-means++")
    kmeans.fit(data.iloc[:,3:])
    wess.append(kmeans.inertia_)
plt.plot(range(1,11),wess)
plt.xlabel("no of clusters")
plt.ylabel("wess")
plt.title("Elbow Method")
km=KMeans(n_clusters=5)
km.fit(data.iloc[:,3:])
y_pred=km.predict(data.iloc[:,3:])
data["cluster"]=y_pred
df0=data[data["cluster"]==0]
df1=data[data["cluster"]==1]
df2=data[data["cluster"]==2]
df3=data[data["cluster"]==3]
df4=data[data["cluster"]==4]
plt.scatter(df0["Annual Income"],df0["Score"],c="red",label="cluster0")
plt.scatter(df1["Annual Income"],df1["Score"],c="black",label="cluster1")
plt.scatter(df2["Annual Income"],df2["Score"],c="blue",label="cluster2")
plt.scatter(df3["Annual Income"],df3["Score"],c="green",label="cluster3")
plt.scatter(df4["Annual Income"],df4["Score"],c="magenta",label="cluster4")
plt.legend() 
plt.title("Customer Segments")

Output:

Data.head():

output

Data.info():

output

Data.isnull().sum():

output

Elbow Method:

output

Cluster:

output

Result:

Thus,the program to implement the K Means Clustering for Customer Segmentation is written and verified using python programming.

implementation-of-k-means-clustering-for-customer-segmentation's People

Contributors

akilamohan avatar abdulwasih2003 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.