Skip to content

hugohiraoka/Bank_Customer_Churn_Prediction

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Bank Customer Churn Prediction

Mar 2 2023 | Hugo Hiraoka | hhiraokawatts@gmail.com

Businesses like banks that provide service have to worry about the problem of 'Churn' i.e. customers leaving and joining another service provider. It is important to understand which aspects of the service influence a customer's decision in this regard. Management can concentrate efforts on the improvement of service, keeping in mind these priorities.

We will build a neural network-based binary classifier to predict whether the bank customer will churn or not in the next 6 months.

Data Description

The bank's dataset contains 10,000 sample points with 14 distinct features such as CustomerId, CreditScore, Geography, Gender, Age, Tenure, Balance, etc.

  • RowNumber: Unique index
  • CustomerId: Unique ID which is assigned to each customer
  • Surname: Last name of the customer
  • CreditScore: It defines the credit history of the customer.
  • Geography: A customer’s location
  • Gender: It defines the Gender of the customer
  • Age: Age of the customer
  • Tenure: Number of years for which the customer has been with the bank
  • NumOfProducts: It refers to the number of products that a customer has purchased through the bank.
  • Balance: Account balance
  • HasCrCard: It is a categorical variable that decides whether the customer has a credit card or not.
  • EstimatedSalary: Estimated salary
  • isActiveMember: It is a categorical variable that decides whether the customer is an active member of the bank or not ( Active member in the sense, using bank products regularly, making transactions, etc )
  • Exited: It is a categorical variable that decides whether the customer left the bank within six months or not. It can take two values: 0=No (Customer did not leave the bank ) 1=Yes ( Customer left the bank ).