https://github.com/codetun/prodigy_ml_02
🛒 Customer Segmentation Project ✨ - Developed during my internship at Prodigy Infotech, this project uses KMeans clustering to segment supermarket customers based on ID, age, gender, income, and spending score. The goal is to identify target customers for better marketing strategies. 📊👨💻
https://github.com/codetun/prodigy_ml_02
jupyter-notebook kaggle prodigy-infotech python
Last synced: 6 months ago
JSON representation
🛒 Customer Segmentation Project ✨ - Developed during my internship at Prodigy Infotech, this project uses KMeans clustering to segment supermarket customers based on ID, age, gender, income, and spending score. The goal is to identify target customers for better marketing strategies. 📊👨💻
- Host: GitHub
- URL: https://github.com/codetun/prodigy_ml_02
- Owner: codeTun
- Created: 2024-07-08T00:42:51.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-07-08T00:51:32.000Z (about 1 year ago)
- Last Synced: 2025-02-04T18:17:03.500Z (8 months ago)
- Topics: jupyter-notebook, kaggle, prodigy-infotech, python
- Language: Jupyter Notebook
- Homepage:
- Size: 40 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Customer Segmentation Project
This project was developed during my internship at Prodigy Infotech. The goal is to perform customer segmentation using the KMeans clustering algorithm, providing insights for effective marketing strategies.
## About the Dataset
The dataset contains customer data from a supermarket mall, collected through membership cards. It includes:
- **Customer ID**: Unique identifier for each customer
- **Age**: Age of the customer
- **Gender**: Gender of the customer
- **Annual Income**: Annual income of the customer
- **Spending Score**: Score assigned based on customer behavior and purchasing data## Project Overview
1. **Data Cleaning**: Handle missing values and preprocess the data.
2. **Exploratory Data Analysis (EDA)**: Gain insights through visualizations.
3. **Clustering**: Apply KMeans clustering to segment customers.
4. **Results**: Identify target customers for marketing strategies.## Dependencies
- Python
- pandas
- numpy
- matplotlib
- seaborn
- scikit-learn