Coder Social home page Coder Social logo

gokulramalingam2005 / implementation-of-k-means-clustering-for-customer-segmentation Goto Github PK

View Code? Open in Web Editor NEW

This project forked from akilamohan/implementation-of-k-means-clustering-for-customer-segmentation

0.0 0.0 0.0 7 KB

License: BSD 3-Clause "New" or "Revised" License

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.

Equipments Required:

  1. Hardware โ€“ PCs
  2. Anaconda โ€“ Python 3.7 Installation / Jupyter notebook

Algorithm

  1. Import the necessary packages using import statement.
  2. Read the given csv file using read_csv() method and print the number of contents to be displayed using df.head().
  3. Import KMeans and use for loop to cluster the data.
  4. Predict the cluster and plot data graphs.
  5. Print the output and end the program.

Program:

/*
Program to implement the K Means Clustering for Customer Segmentation.
Developed by: Gokul R
RegisterNumber:  212222230039
*/

import numpy as np
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
wcss=[]

for i in range (1,11):
kmeans=KMeans(n_clusters = i,init="k-means++")
kmeans.fit(data.iloc[:,3:])
wcss.append(kmeans.inertia_)
plt.plot(range(1,11),wcss)
plt.xlabel("No. of clusters")
plt.ylabel("wcss")
plt.title("Elbow matter")
km=KMeans(n_clusters=5)
km.fit(data.iloc[:,3:])
y_pred=km.predict(data.iloc[:,3:])
y_pred

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 (k$)"],df0["Spending Score (1-
100)"],c="red",label="cluster0")
plt.scatter(df1["Annual Income (k$)"],df1["Spending Score (1-
100)"],c="black",label="cluster1")
plt.scatter(df2["Annual Income (k$)"],df2["Spending Score (1-
100)"],c="blue",label="cluster2")
plt.scatter(df3["Annual Income (k$)"],df3["Spending Score (1-
100)"],c="green",label="cluster3")
plt.scatter(df4["Annual Income (k$)"],df4["Spending Score (1-
100)"],c="magenta",label="cluster4")

plt.legend()
plt.title("Customer Segmets")

Output:

DATASET:

281975354-8c29a6e1-9f13-49ec-ad7f-52a2a6ceae0b

data.head():

281975377-28f86f70-eaaa-49a5-8534-b8c8e69d7d31

data.info():

281975413-91a49a82-871f-4aa3-8c9f-75644fd911d2

data.isnull() & sum():

281975438-723f23ce-744b-4357-8873-6c48a81e17a6

Elbow method graph:

281975465-af124f8a-c6a7-42a7-8623-4e3bcd2a1ab7

K means cluster:

281975484-c1e5241d-e46f-4a0b-ba7d-a2034dcdb4e6

Y_prediction value:

281975504-7209528d-b484-4b0c-9961-9f3af99f1eb9

Customers Segments Graph:

281975518-3aa6d9ca-b7a2-4d93-8ac2-98a4e2ccaaea

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 gokulramalingam2005 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.