Customer Personality Analysis from Kaggle
Original File: marketing_campaign.csv
- Python 3.12
- Pandas
- Jupyter Notebook / VS Code
- Loaded dataset using
read_csv()with tab separator (\t) - Cleaned column names:
- Lowercased
- Removed spaces and replaced with underscores
- Handled missing values:
- Filled missing
incomevalues with the column mean
- Filled missing
- Removed duplicate rows
- Standardized text fields (
education,marital_status)- Converted to lowercase, removed extra spaces
- Converted
dt_customercolumn to datetime format - Fixed data types:
incomeas floatyear_birthas int
- Saved cleaned data as
cleaned_customer_data.csv
cleaned_customer_data.csvβ Cleaned datasetTask1.ipynbβ Python codeREADME.mdβ This summary document
##Submission Project for Data Analyst Internship β Task 1