SlideShare a Scribd company logo
1 of 5
Download to read offline
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 09 Issue: 05 | May 2022 www.irjet.net p-ISSN: 2395-0072
© 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 1327
Bank Customer Segmentation & Insurance Claim Prediction
Yashi Rajput1, Prof. Vikash Singhal2, Manish Saraswat3, Vanshika Chitranshi 4,
Mohd. Talib Khan 5, Shipra Shrivastava 6
1,3,4,5B-Tech Student, Greater Noida Institute of Technology, Greater Noida, India
2Professor, Greater Noida Institute of Technology, Greater Noida, India
6Ass.Professor, Greater Noida Institute of Technology, Greater Noida, India
-------------------------------------------------------------------------------***------------------------------------------------------------------------------
Abstract - This project will help a bank in segmenting their
client and an Insurance company to studytheclaim Prediction
pattern. This design is majorly grounded on data mining and
its ways. It majorly focuses on clustering and Prediction using
machine literacy and python libraries similar as NumPy,
pandas, seaborn, and matplotlib. It also contributes to the
enhancement of the pricing models. This helps the insurance
company to be one step ahead of its contender. Carrying and
acting on client data through the lens of segmentation can
have a massive impact on marketing and deals, retention
sweats, client service, and more.
Key Words: NumPy, Pandas, Seaborn, Matplotlib,
Machine learning, DecisionTree,RandomForest,Binary
logistic Regression.
1. INTRODUCTION
Client segmentation is the approach of dividing a large and
different client base into lower groups of affiliated guests
that are analogous in certain ways and applicable to the
marketing of a bank’s products and services. Some
introductory segmentation criteria include terrain, income,
and spending habits.Throughclientsegmentation,banks can
get to know their guests on a core particular position and
offer them more customized products and services.
Insurance companies are extensively interested in the
Prediction of the future. Accurate Prediction gives a
probability to drop fiscal loss for the company. The insurers
use rather complex methodologies for this purpose. The
major models are a decision tree, a arbitrary timber, a
double logistic retrogression, and a support vectormachine.
A great number of different variables are under analysis in
this case.
A bank’s client segmentation approach can vary extensively
and must be grounded on the association’s business model
and precedences. Parts can be quantitative, similarasbyage
and gender, or they can be qualitative, similar as separation
by values and interests.
The maximum value is attained when banks combine both
types of data to more understand the wants and
requirements of their client parts, allowing them to offerthe
right product or service at the right time.
1.1 CLUSTERING
A bank’s client segmentation (Clustering)approachcanvary
extensively and must be grounded on the association’s
business model and precedences. Parts can be quantitative,
similar as by age and gender, or they can be qualitative,
similar as separation by values and interests.
The maximum value is attained when banks combine both
types of data to more understand the wants and
requirements of their client parts, allowing them to offerthe
right product or service at the right time.
A leading bank wants to develop a client segmentation to
give promotional offers to its guests.Theycollecteda sample
that summarizes the conditioning of druggies during the
once many months. We've to identify the parts grounded on
credit card operation.
1.2 CART-NF-ANN
An Insurance Claim Prediction (Cart-NF)firmprovidingtour
insurance was facing higher claim frequency. The
management decided to collect data from thepastfewyears.
We will make a model that predicts the claim status and
provides recommendations to management. UsingCART, RF
& ANN or comparing the models' performances in train and
test sets.
2. WORKING
It is divided into two sub problems:
2.1 Bank Customer Segmentation
Step 1: Doing all the initial steps, and exploratory data
analysis (Univariate, Bi-variate, and multivariate analysis).
Step 2: Justifying that scaling is necessary for clustering in
this case.
Step 3: Applying hierarchical clustering to scaled data.
Identifying the number of optimum clusters using
Dendrogram and briefly describing them.
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 09 Issue: 05 | May 2022 www.irjet.net p-ISSN: 2395-0072
© 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 1328
DENDROGRAM :
Step 4: Applying K-Means clustering on scaled data and
determining optimum clusters. Applying elbow curve and
silhouette score. Explaining the results properly.
Interpreting and writing inferences on the finalizedclusters.
Step 5: Describing cluster profiles for the clusters defined.
Recommendingdifferent promotional strategiesfordifferent
clusters.
2.2 Insurance Claim Prediction
Step 1: Doing all the initial steps, and exploratory data
analysis (Univariate, Bi-variate, and multivariate analysis).
We see that all 4 continuous variables : Age , Commission ,
Duration and sales have outliers present.
Now we have treated the outliers although inthis problem
we shall proceed with complete dataset as the data ismostly
relevant for analysis and we shall get a more generalized
result.
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 09 Issue: 05 | May 2022 www.irjet.net p-ISSN: 2395-0072
© 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 1329
#We can see from above BIVARIATE ANALYSIS that Sales
and Duration have linear relation only and
#None of the other features have linearity.
#This implies that with higher commission there is more
sales in the insurance marketplace.
#Again we can conclude from heatmap that Sales and
commision have a high correlation .
Step 2: Data Splitting: Splitting the data into test and train,
building classificationmodel CART,RandomForest,Artificial
Neural Network.
Step 3: Performance Metrics: Checking the performance of
Predictions on Train and TestsetsusingAccuracy,Confusion
Matrix, Plot ROC curve and get ROC_AUC score,classification
reports for each model.
Step 4: Final Model: Comparing all themodelsandwriting an
inference about which model is best/optimized.
Step 5: Inference: Based on the whole Analysis, what are the
business insights and recommendation.
3. ARTIFICIAL NEURAL NETWORK MODEL:
ANN on train dataset:
Confusion matrix:
[[1258(TN), 101(FP)],
[398(FN), 245(TP)]],
Classification report:
Roc Auc Curve:
AUC: 0.700
Accuracy: 55.69%
ANN on test dataset:
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 09 Issue: 05 | May 2022 www.irjet.net p-ISSN: 2395-0072
© 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 1330
Confusion matrix:
[[547(TN), 41(FP)],
[170(FN), 101(TP)]],
Classification Report:
Roc AUC Curve:
AUC: 0.683
Accuracy: 54.71%
From the above Evaluations we can again conclude that the
evaluation
values are close to the same for both the train and test
datasets therefore we can accept this model as well since it
has an acceptable range of accuracy andisneitheroverfitted
nor under fitted.
4. Objectives
Problem 1 Objectives:
Making clusters according to the dataset or segmenting
customers according to their credit card usage. Aftermaking
clusters we will study whom to give extended benefits and
whom to educate about digital transaction benefits and
whom to reduce into single monthly EMIS and various other
important aspects which should be taken care of.
Problem 2 Objectives:
The main objective here is to reduce Claim frequency and
improve sales. Accordingly we will proceed in data set and
do the further analysis resulting into our objective.
5. Business Insights:
Based on the whole Analysis, what are the business insights
and recommendation, The following inferences and
recommendations can be put forward to the insurance
company's management:
The Business objectivehereistoreduceClaimfrequencyand
improve sales:
1. We have initially analyzed that Agency code i.e. firms
providing tour packages have a high importance in claim
status. A detailed analysis ofclaimperAgencycanbe worked
out and products can be limited or modified to agencies
rendering high claims in order to cover the settlement cost.
2. There is a close to linear relationbetweencommissionand
sales which is a clear indicator that insurance lead
generators who make a good amount of sales earn high
commission , management can work out some schemes or
added benefits for sales people to motivate them and induce
a sense of competition among them to achieve higher and
higher sales.
3. The cases where prediction is False Positive canbe looked
at closely and the reason for decline of claim settlement
could be studied and improved to provide customer
satisfaction and retention.
4. Other features like Age and Destination can be grouped
into Low, Medium and High Risk categories and subsequent
pricing could be done in order to limit the risk and reduce
claims.
5. In order to reduce claims, the False Negative cases haveto
be minimized thus improving model accuracy.
6. CONCLUSIONS
Conclusion of problem 1:
The cluster 1 customers could be provided with an add-on
card in order to cover their high spendingorcreditcardlimit
could be enhanced resulting in added revenue to the Bank.
The cluster 1 customers are alreadygeneratinghighrevenue
for the bank therefore various discounts could beofferedfor
Ecom based on spending patterns. This will increase
customer retention and decrease the churn rate. Also, the
annual fee could be waived off based on a certain amount of
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 09 Issue: 05 | May 2022 www.irjet.net p-ISSN: 2395-0072
© 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 1331
spending. Cluster 0 the middle-income group is the one who
has a high spending potential but may be dealing mostly in
cash transactions and therefore Bank should chart out
strategies to educate these customers about the advantages
of making Digital/Card Transactions and onboard them on
the Digital Platform. Once Cluster 0 customers switch to the
Digital/Card mode of payment they could be laddered up to
Cluster 1 by giving them the right offer at the right time
increasing their spending and thus enhancing the bank’s
wallet share in this cluster as well. Cluster 2 is a
comparatively low-income group, here Bank may provide
offers to break down big single spent into EMIs to ease the
monthly bill and ultimately reduce the possibility of default.
Conclusion of problem 2:
We have initially analyzed that Agency code i.e. firms
providing tour packaged have a high importance in claim
status. A detailed analysis ofclaimperAgencycanbe worked
out and products can be limited or modified to agencies
rendering high claim in order to cover the settlement cost.
There is a close to linear relation between commission and
sales which is a clear indicator that insurance lead
generators who make a good amount of sales earn high
commission , management can work out some schemes or
added benefits for sales people to motivate them and induce
a sense of competition among them to achieve higher and
higher sales. The cases where predictionisFalsePositive can
be looked closely and the reason for decline of claim
settlement could be studied and improved to provide
customer satisfaction and retention. Other features like Age
and Destination can be grouped into Low , Medium andHigh
Risk category and subsequent pricing couldbedoneinorder
to limit the risk and reduce claims. In order to reduceclaims,
the False Negative cases have to be minimized thus
improving model accuracy.
REFERENCES
[1] ACRL Research Planning and Review Committee.(2014).
Top trends in academic libraries: A review of the trends and
issues affecting academic libraries in education . College &
Research Libraries News, 75(6),294-30
[2] ZTM (Andrei Neagoei: Data science Instructor)
[3] Tayyab (Analytics Consultant at EXL)
[4] Great Learning
[5] Stack overflow
[6] Google Professional data analytics course
[7] Kaggle

More Related Content

Similar to Bank Customer Segmentation & Insurance Claim Prediction

IRJET - Customer Churn Analysis in Telecom Industry
IRJET - Customer Churn Analysis in Telecom IndustryIRJET - Customer Churn Analysis in Telecom Industry
IRJET - Customer Churn Analysis in Telecom IndustryIRJET Journal
 
IRJET-Recommendation in E-Commerce using Collaborative Filtering
IRJET-Recommendation in E-Commerce using Collaborative FilteringIRJET-Recommendation in E-Commerce using Collaborative Filtering
IRJET-Recommendation in E-Commerce using Collaborative FilteringIRJET Journal
 
Machine Learning Approaches to Predict Customer Churn in Telecommunications I...
Machine Learning Approaches to Predict Customer Churn in Telecommunications I...Machine Learning Approaches to Predict Customer Churn in Telecommunications I...
Machine Learning Approaches to Predict Customer Churn in Telecommunications I...IRJET Journal
 
BIG MART SALES PREDICTION USING MACHINE LEARNING
BIG MART SALES PREDICTION USING MACHINE LEARNINGBIG MART SALES PREDICTION USING MACHINE LEARNING
BIG MART SALES PREDICTION USING MACHINE LEARNINGIRJET Journal
 
Data Severance Using Machine Learning for Marketing Strategies
Data Severance Using Machine Learning for Marketing StrategiesData Severance Using Machine Learning for Marketing Strategies
Data Severance Using Machine Learning for Marketing StrategiesIRJET Journal
 
DEMOGRAPHIC DIVISION OF A MART BY APPLYING CLUSTERING TECHNIQUES
DEMOGRAPHIC DIVISION OF A MART BY APPLYING CLUSTERING TECHNIQUESDEMOGRAPHIC DIVISION OF A MART BY APPLYING CLUSTERING TECHNIQUES
DEMOGRAPHIC DIVISION OF A MART BY APPLYING CLUSTERING TECHNIQUESIRJET Journal
 
IRJET- Financial Analysis using Data Mining
IRJET- Financial Analysis using Data MiningIRJET- Financial Analysis using Data Mining
IRJET- Financial Analysis using Data MiningIRJET Journal
 
Comparative Analysis of Machine Learning Algorithms for their Effectiveness i...
Comparative Analysis of Machine Learning Algorithms for their Effectiveness i...Comparative Analysis of Machine Learning Algorithms for their Effectiveness i...
Comparative Analysis of Machine Learning Algorithms for their Effectiveness i...IRJET Journal
 
Providing Highly Accurate Service Recommendation over Big Data using Adaptive...
Providing Highly Accurate Service Recommendation over Big Data using Adaptive...Providing Highly Accurate Service Recommendation over Big Data using Adaptive...
Providing Highly Accurate Service Recommendation over Big Data using Adaptive...IRJET Journal
 
IRJET- A Survey: Quality Control Tool in Auto Parts Industry
IRJET- A Survey: Quality Control Tool in Auto Parts IndustryIRJET- A Survey: Quality Control Tool in Auto Parts Industry
IRJET- A Survey: Quality Control Tool in Auto Parts IndustryIRJET Journal
 
MACHINE LEARNING CLASSIFIERS TO ANALYZE CREDIT RISK
MACHINE LEARNING CLASSIFIERS TO ANALYZE CREDIT RISKMACHINE LEARNING CLASSIFIERS TO ANALYZE CREDIT RISK
MACHINE LEARNING CLASSIFIERS TO ANALYZE CREDIT RISKIRJET Journal
 
Loan Approval Prediction
Loan Approval PredictionLoan Approval Prediction
Loan Approval PredictionIRJET Journal
 
CLUSTERING MODELS FOR MUTUAL FUND RECOMMENDATION
CLUSTERING MODELS FOR MUTUAL FUND RECOMMENDATIONCLUSTERING MODELS FOR MUTUAL FUND RECOMMENDATION
CLUSTERING MODELS FOR MUTUAL FUND RECOMMENDATIONIRJET Journal
 
Data Mining on Customer Churn Classification
Data Mining on Customer Churn ClassificationData Mining on Customer Churn Classification
Data Mining on Customer Churn ClassificationKaushik Rajan
 
Pricing Optimization using Machine Learning
Pricing Optimization using Machine LearningPricing Optimization using Machine Learning
Pricing Optimization using Machine LearningIRJET Journal
 
Customer churn classification using machine learning techniques
Customer churn classification using machine learning techniquesCustomer churn classification using machine learning techniques
Customer churn classification using machine learning techniquesSindhujanDhayalan
 
IRJET-Smart Tourism Recommender System
IRJET-Smart Tourism Recommender SystemIRJET-Smart Tourism Recommender System
IRJET-Smart Tourism Recommender SystemIRJET Journal
 
EVALUTION OF CHURN PREDICTING PROCESS USING CUSTOMER BEHAVIOUR PATTERN
EVALUTION OF CHURN PREDICTING PROCESS USING CUSTOMER BEHAVIOUR PATTERNEVALUTION OF CHURN PREDICTING PROCESS USING CUSTOMER BEHAVIOUR PATTERN
EVALUTION OF CHURN PREDICTING PROCESS USING CUSTOMER BEHAVIOUR PATTERNIRJET Journal
 
Loan Default Prediction Using Machine Learning Techniques
Loan Default Prediction Using Machine Learning TechniquesLoan Default Prediction Using Machine Learning Techniques
Loan Default Prediction Using Machine Learning TechniquesIRJET Journal
 
Customer churn analysis using XGBoosted decision trees
Customer churn analysis using XGBoosted decision treesCustomer churn analysis using XGBoosted decision trees
Customer churn analysis using XGBoosted decision treesnooriasukmaningtyas
 

Similar to Bank Customer Segmentation & Insurance Claim Prediction (20)

IRJET - Customer Churn Analysis in Telecom Industry
IRJET - Customer Churn Analysis in Telecom IndustryIRJET - Customer Churn Analysis in Telecom Industry
IRJET - Customer Churn Analysis in Telecom Industry
 
IRJET-Recommendation in E-Commerce using Collaborative Filtering
IRJET-Recommendation in E-Commerce using Collaborative FilteringIRJET-Recommendation in E-Commerce using Collaborative Filtering
IRJET-Recommendation in E-Commerce using Collaborative Filtering
 
Machine Learning Approaches to Predict Customer Churn in Telecommunications I...
Machine Learning Approaches to Predict Customer Churn in Telecommunications I...Machine Learning Approaches to Predict Customer Churn in Telecommunications I...
Machine Learning Approaches to Predict Customer Churn in Telecommunications I...
 
BIG MART SALES PREDICTION USING MACHINE LEARNING
BIG MART SALES PREDICTION USING MACHINE LEARNINGBIG MART SALES PREDICTION USING MACHINE LEARNING
BIG MART SALES PREDICTION USING MACHINE LEARNING
 
Data Severance Using Machine Learning for Marketing Strategies
Data Severance Using Machine Learning for Marketing StrategiesData Severance Using Machine Learning for Marketing Strategies
Data Severance Using Machine Learning for Marketing Strategies
 
DEMOGRAPHIC DIVISION OF A MART BY APPLYING CLUSTERING TECHNIQUES
DEMOGRAPHIC DIVISION OF A MART BY APPLYING CLUSTERING TECHNIQUESDEMOGRAPHIC DIVISION OF A MART BY APPLYING CLUSTERING TECHNIQUES
DEMOGRAPHIC DIVISION OF A MART BY APPLYING CLUSTERING TECHNIQUES
 
IRJET- Financial Analysis using Data Mining
IRJET- Financial Analysis using Data MiningIRJET- Financial Analysis using Data Mining
IRJET- Financial Analysis using Data Mining
 
Comparative Analysis of Machine Learning Algorithms for their Effectiveness i...
Comparative Analysis of Machine Learning Algorithms for their Effectiveness i...Comparative Analysis of Machine Learning Algorithms for their Effectiveness i...
Comparative Analysis of Machine Learning Algorithms for their Effectiveness i...
 
Providing Highly Accurate Service Recommendation over Big Data using Adaptive...
Providing Highly Accurate Service Recommendation over Big Data using Adaptive...Providing Highly Accurate Service Recommendation over Big Data using Adaptive...
Providing Highly Accurate Service Recommendation over Big Data using Adaptive...
 
IRJET- A Survey: Quality Control Tool in Auto Parts Industry
IRJET- A Survey: Quality Control Tool in Auto Parts IndustryIRJET- A Survey: Quality Control Tool in Auto Parts Industry
IRJET- A Survey: Quality Control Tool in Auto Parts Industry
 
MACHINE LEARNING CLASSIFIERS TO ANALYZE CREDIT RISK
MACHINE LEARNING CLASSIFIERS TO ANALYZE CREDIT RISKMACHINE LEARNING CLASSIFIERS TO ANALYZE CREDIT RISK
MACHINE LEARNING CLASSIFIERS TO ANALYZE CREDIT RISK
 
Loan Approval Prediction
Loan Approval PredictionLoan Approval Prediction
Loan Approval Prediction
 
CLUSTERING MODELS FOR MUTUAL FUND RECOMMENDATION
CLUSTERING MODELS FOR MUTUAL FUND RECOMMENDATIONCLUSTERING MODELS FOR MUTUAL FUND RECOMMENDATION
CLUSTERING MODELS FOR MUTUAL FUND RECOMMENDATION
 
Data Mining on Customer Churn Classification
Data Mining on Customer Churn ClassificationData Mining on Customer Churn Classification
Data Mining on Customer Churn Classification
 
Pricing Optimization using Machine Learning
Pricing Optimization using Machine LearningPricing Optimization using Machine Learning
Pricing Optimization using Machine Learning
 
Customer churn classification using machine learning techniques
Customer churn classification using machine learning techniquesCustomer churn classification using machine learning techniques
Customer churn classification using machine learning techniques
 
IRJET-Smart Tourism Recommender System
IRJET-Smart Tourism Recommender SystemIRJET-Smart Tourism Recommender System
IRJET-Smart Tourism Recommender System
 
EVALUTION OF CHURN PREDICTING PROCESS USING CUSTOMER BEHAVIOUR PATTERN
EVALUTION OF CHURN PREDICTING PROCESS USING CUSTOMER BEHAVIOUR PATTERNEVALUTION OF CHURN PREDICTING PROCESS USING CUSTOMER BEHAVIOUR PATTERN
EVALUTION OF CHURN PREDICTING PROCESS USING CUSTOMER BEHAVIOUR PATTERN
 
Loan Default Prediction Using Machine Learning Techniques
Loan Default Prediction Using Machine Learning TechniquesLoan Default Prediction Using Machine Learning Techniques
Loan Default Prediction Using Machine Learning Techniques
 
Customer churn analysis using XGBoosted decision trees
Customer churn analysis using XGBoosted decision treesCustomer churn analysis using XGBoosted decision trees
Customer churn analysis using XGBoosted decision trees
 

More from IRJET Journal

TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...IRJET Journal
 
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURESTUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTUREIRJET Journal
 
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...IRJET Journal
 
Effect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsEffect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsIRJET Journal
 
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...IRJET Journal
 
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...IRJET Journal
 
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...IRJET Journal
 
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...IRJET Journal
 
A REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASA REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASIRJET Journal
 
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...IRJET Journal
 
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProP.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProIRJET Journal
 
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...IRJET Journal
 
Survey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemSurvey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemIRJET Journal
 
Review on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesReview on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesIRJET Journal
 
React based fullstack edtech web application
React based fullstack edtech web applicationReact based fullstack edtech web application
React based fullstack edtech web applicationIRJET Journal
 
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...IRJET Journal
 
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.IRJET Journal
 
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...IRJET Journal
 
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignMultistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignIRJET Journal
 
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...IRJET Journal
 

More from IRJET Journal (20)

TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
 
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURESTUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
 
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
 
Effect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsEffect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil Characteristics
 
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
 
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
 
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
 
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
 
A REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASA REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADAS
 
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
 
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProP.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
 
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
 
Survey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemSurvey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare System
 
Review on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesReview on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridges
 
React based fullstack edtech web application
React based fullstack edtech web applicationReact based fullstack edtech web application
React based fullstack edtech web application
 
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
 
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
 
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
 
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignMultistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
 
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
 

Recently uploaded

(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Christo Ananth
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxpurnimasatapathy1234
 
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
Introduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxIntroduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxupamatechverse
 
Extrusion Processes and Their Limitations
Extrusion Processes and Their LimitationsExtrusion Processes and Their Limitations
Extrusion Processes and Their Limitations120cr0395
 
GDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentationGDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentationGDSCAESB
 
chaitra-1.pptx fake news detection using machine learning
chaitra-1.pptx  fake news detection using machine learningchaitra-1.pptx  fake news detection using machine learning
chaitra-1.pptx fake news detection using machine learningmisbanausheenparvam
 
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...ranjana rawat
 
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSAPPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSKurinjimalarL3
 
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130Suhani Kapoor
 
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxDecoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxJoão Esperancinha
 
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVHARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVRajaP95
 
Coefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxCoefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxAsutosh Ranjan
 
SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )Tsuyoshi Horigome
 
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCollege Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCall Girls in Nagpur High Profile
 

Recently uploaded (20)

(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
 
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCRCall Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
 
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINEDJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptx
 
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
Introduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxIntroduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptx
 
Extrusion Processes and Their Limitations
Extrusion Processes and Their LimitationsExtrusion Processes and Their Limitations
Extrusion Processes and Their Limitations
 
GDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentationGDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentation
 
chaitra-1.pptx fake news detection using machine learning
chaitra-1.pptx  fake news detection using machine learningchaitra-1.pptx  fake news detection using machine learning
chaitra-1.pptx fake news detection using machine learning
 
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
 
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
 
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSAPPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
 
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
 
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
 
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxDecoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
 
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVHARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
 
Coefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxCoefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptx
 
SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )
 
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCollege Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
 

Bank Customer Segmentation & Insurance Claim Prediction

  • 1. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 09 Issue: 05 | May 2022 www.irjet.net p-ISSN: 2395-0072 © 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 1327 Bank Customer Segmentation & Insurance Claim Prediction Yashi Rajput1, Prof. Vikash Singhal2, Manish Saraswat3, Vanshika Chitranshi 4, Mohd. Talib Khan 5, Shipra Shrivastava 6 1,3,4,5B-Tech Student, Greater Noida Institute of Technology, Greater Noida, India 2Professor, Greater Noida Institute of Technology, Greater Noida, India 6Ass.Professor, Greater Noida Institute of Technology, Greater Noida, India -------------------------------------------------------------------------------***------------------------------------------------------------------------------ Abstract - This project will help a bank in segmenting their client and an Insurance company to studytheclaim Prediction pattern. This design is majorly grounded on data mining and its ways. It majorly focuses on clustering and Prediction using machine literacy and python libraries similar as NumPy, pandas, seaborn, and matplotlib. It also contributes to the enhancement of the pricing models. This helps the insurance company to be one step ahead of its contender. Carrying and acting on client data through the lens of segmentation can have a massive impact on marketing and deals, retention sweats, client service, and more. Key Words: NumPy, Pandas, Seaborn, Matplotlib, Machine learning, DecisionTree,RandomForest,Binary logistic Regression. 1. INTRODUCTION Client segmentation is the approach of dividing a large and different client base into lower groups of affiliated guests that are analogous in certain ways and applicable to the marketing of a bank’s products and services. Some introductory segmentation criteria include terrain, income, and spending habits.Throughclientsegmentation,banks can get to know their guests on a core particular position and offer them more customized products and services. Insurance companies are extensively interested in the Prediction of the future. Accurate Prediction gives a probability to drop fiscal loss for the company. The insurers use rather complex methodologies for this purpose. The major models are a decision tree, a arbitrary timber, a double logistic retrogression, and a support vectormachine. A great number of different variables are under analysis in this case. A bank’s client segmentation approach can vary extensively and must be grounded on the association’s business model and precedences. Parts can be quantitative, similarasbyage and gender, or they can be qualitative, similar as separation by values and interests. The maximum value is attained when banks combine both types of data to more understand the wants and requirements of their client parts, allowing them to offerthe right product or service at the right time. 1.1 CLUSTERING A bank’s client segmentation (Clustering)approachcanvary extensively and must be grounded on the association’s business model and precedences. Parts can be quantitative, similar as by age and gender, or they can be qualitative, similar as separation by values and interests. The maximum value is attained when banks combine both types of data to more understand the wants and requirements of their client parts, allowing them to offerthe right product or service at the right time. A leading bank wants to develop a client segmentation to give promotional offers to its guests.Theycollecteda sample that summarizes the conditioning of druggies during the once many months. We've to identify the parts grounded on credit card operation. 1.2 CART-NF-ANN An Insurance Claim Prediction (Cart-NF)firmprovidingtour insurance was facing higher claim frequency. The management decided to collect data from thepastfewyears. We will make a model that predicts the claim status and provides recommendations to management. UsingCART, RF & ANN or comparing the models' performances in train and test sets. 2. WORKING It is divided into two sub problems: 2.1 Bank Customer Segmentation Step 1: Doing all the initial steps, and exploratory data analysis (Univariate, Bi-variate, and multivariate analysis). Step 2: Justifying that scaling is necessary for clustering in this case. Step 3: Applying hierarchical clustering to scaled data. Identifying the number of optimum clusters using Dendrogram and briefly describing them.
  • 2. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 09 Issue: 05 | May 2022 www.irjet.net p-ISSN: 2395-0072 © 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 1328 DENDROGRAM : Step 4: Applying K-Means clustering on scaled data and determining optimum clusters. Applying elbow curve and silhouette score. Explaining the results properly. Interpreting and writing inferences on the finalizedclusters. Step 5: Describing cluster profiles for the clusters defined. Recommendingdifferent promotional strategiesfordifferent clusters. 2.2 Insurance Claim Prediction Step 1: Doing all the initial steps, and exploratory data analysis (Univariate, Bi-variate, and multivariate analysis). We see that all 4 continuous variables : Age , Commission , Duration and sales have outliers present. Now we have treated the outliers although inthis problem we shall proceed with complete dataset as the data ismostly relevant for analysis and we shall get a more generalized result.
  • 3. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 09 Issue: 05 | May 2022 www.irjet.net p-ISSN: 2395-0072 © 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 1329 #We can see from above BIVARIATE ANALYSIS that Sales and Duration have linear relation only and #None of the other features have linearity. #This implies that with higher commission there is more sales in the insurance marketplace. #Again we can conclude from heatmap that Sales and commision have a high correlation . Step 2: Data Splitting: Splitting the data into test and train, building classificationmodel CART,RandomForest,Artificial Neural Network. Step 3: Performance Metrics: Checking the performance of Predictions on Train and TestsetsusingAccuracy,Confusion Matrix, Plot ROC curve and get ROC_AUC score,classification reports for each model. Step 4: Final Model: Comparing all themodelsandwriting an inference about which model is best/optimized. Step 5: Inference: Based on the whole Analysis, what are the business insights and recommendation. 3. ARTIFICIAL NEURAL NETWORK MODEL: ANN on train dataset: Confusion matrix: [[1258(TN), 101(FP)], [398(FN), 245(TP)]], Classification report: Roc Auc Curve: AUC: 0.700 Accuracy: 55.69% ANN on test dataset:
  • 4. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 09 Issue: 05 | May 2022 www.irjet.net p-ISSN: 2395-0072 © 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 1330 Confusion matrix: [[547(TN), 41(FP)], [170(FN), 101(TP)]], Classification Report: Roc AUC Curve: AUC: 0.683 Accuracy: 54.71% From the above Evaluations we can again conclude that the evaluation values are close to the same for both the train and test datasets therefore we can accept this model as well since it has an acceptable range of accuracy andisneitheroverfitted nor under fitted. 4. Objectives Problem 1 Objectives: Making clusters according to the dataset or segmenting customers according to their credit card usage. Aftermaking clusters we will study whom to give extended benefits and whom to educate about digital transaction benefits and whom to reduce into single monthly EMIS and various other important aspects which should be taken care of. Problem 2 Objectives: The main objective here is to reduce Claim frequency and improve sales. Accordingly we will proceed in data set and do the further analysis resulting into our objective. 5. Business Insights: Based on the whole Analysis, what are the business insights and recommendation, The following inferences and recommendations can be put forward to the insurance company's management: The Business objectivehereistoreduceClaimfrequencyand improve sales: 1. We have initially analyzed that Agency code i.e. firms providing tour packages have a high importance in claim status. A detailed analysis ofclaimperAgencycanbe worked out and products can be limited or modified to agencies rendering high claims in order to cover the settlement cost. 2. There is a close to linear relationbetweencommissionand sales which is a clear indicator that insurance lead generators who make a good amount of sales earn high commission , management can work out some schemes or added benefits for sales people to motivate them and induce a sense of competition among them to achieve higher and higher sales. 3. The cases where prediction is False Positive canbe looked at closely and the reason for decline of claim settlement could be studied and improved to provide customer satisfaction and retention. 4. Other features like Age and Destination can be grouped into Low, Medium and High Risk categories and subsequent pricing could be done in order to limit the risk and reduce claims. 5. In order to reduce claims, the False Negative cases haveto be minimized thus improving model accuracy. 6. CONCLUSIONS Conclusion of problem 1: The cluster 1 customers could be provided with an add-on card in order to cover their high spendingorcreditcardlimit could be enhanced resulting in added revenue to the Bank. The cluster 1 customers are alreadygeneratinghighrevenue for the bank therefore various discounts could beofferedfor Ecom based on spending patterns. This will increase customer retention and decrease the churn rate. Also, the annual fee could be waived off based on a certain amount of
  • 5. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 09 Issue: 05 | May 2022 www.irjet.net p-ISSN: 2395-0072 © 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 1331 spending. Cluster 0 the middle-income group is the one who has a high spending potential but may be dealing mostly in cash transactions and therefore Bank should chart out strategies to educate these customers about the advantages of making Digital/Card Transactions and onboard them on the Digital Platform. Once Cluster 0 customers switch to the Digital/Card mode of payment they could be laddered up to Cluster 1 by giving them the right offer at the right time increasing their spending and thus enhancing the bank’s wallet share in this cluster as well. Cluster 2 is a comparatively low-income group, here Bank may provide offers to break down big single spent into EMIs to ease the monthly bill and ultimately reduce the possibility of default. Conclusion of problem 2: We have initially analyzed that Agency code i.e. firms providing tour packaged have a high importance in claim status. A detailed analysis ofclaimperAgencycanbe worked out and products can be limited or modified to agencies rendering high claim in order to cover the settlement cost. There is a close to linear relation between commission and sales which is a clear indicator that insurance lead generators who make a good amount of sales earn high commission , management can work out some schemes or added benefits for sales people to motivate them and induce a sense of competition among them to achieve higher and higher sales. The cases where predictionisFalsePositive can be looked closely and the reason for decline of claim settlement could be studied and improved to provide customer satisfaction and retention. Other features like Age and Destination can be grouped into Low , Medium andHigh Risk category and subsequent pricing couldbedoneinorder to limit the risk and reduce claims. In order to reduceclaims, the False Negative cases have to be minimized thus improving model accuracy. REFERENCES [1] ACRL Research Planning and Review Committee.(2014). Top trends in academic libraries: A review of the trends and issues affecting academic libraries in education . College & Research Libraries News, 75(6),294-30 [2] ZTM (Andrei Neagoei: Data science Instructor) [3] Tayyab (Analytics Consultant at EXL) [4] Great Learning [5] Stack overflow [6] Google Professional data analytics course [7] Kaggle