SlideShare a Scribd company logo
1 of 6
Download to read offline
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 06 Issue: 03 | Mar 2019 www.irjet.net p-ISSN: 2395-0072
© 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 3231
Consumer Complaint Data Analysis
P. Rupesh1, P. Gunasekhar2, T.M.Achyuth3, Y. Venkata Krishna4
1,2,3,4R.M.K Engineering College, Chennai, Tamilnadu
--------------------------------------------------------------------***-------------------------------------------------------------------------
Abstract:- Each week, the thousands of consumer's complaints about financial protection, services or crash databases of
banks to companies for response. Those complaints are published here after the company responds or after 15 days, whichever
comes first. By submitting a complaint, consumers can be heard by financial companies, get help with their own issues, and
help others avoid similar ones. Every complaint provides insight into problems that people are experiencing, helping us
identify inappropriate practices and allowing us to stop them before they become major issues. The analysis highlights how
text mining analysis can help unlock the wealth of information contained in consumer complaint databases. The aim is better
outcomes for consumers, and a better financial marketplace for everyone.
1. Introduction:
Previous studies define a complaint as a conflict between a consumer and a business organization in which the fairness of
the resolution procedures, the interpersonal communication and behavior, and the outcome of the complaint resolution
process are the principal evaluative criteria used by the customer. In our opinion, a complaint is not necessary a conflict,
however, it can create a conflict between a customer and a business organization, when the answer to the consumer’s
complaint is not satisfactory. The consumer complaint data set handles all complaints according to states, products, zip
codes, company and sub product categories. Our analysis is primarily focused on Mortgage complaints as maximum
complaints are registered for this sector. Followed by debit collection and credit reporting complaints.
2. Background Work:
Our dataset is available as Consumer Complaint data on www.data.gov. Data is in Comma Separated File (.csv) format of
size 290mb. Dataset contains complaints from 2011 to June 2016. We used “Cloud Berry” explorer- an online storage
service provided by Amazon Web Service. We uploaded our data on cloud berry which helps to move data from local
computer and cloud. Cloud Berry allows accessing and managing azure accounts. We graphically represented our
analysis using Tableau software and IBM Watson analytics.
2.1 Data Storage:
The Unstructured Data is stored in Hadoop Distributed File System (HDFS). The Hadoop Distributed File System (HDFS)
is designed to store very large data sets reliably, and to stream those data sets at high bandwidth to user applications.
In a large cluster, thousands of servers both host directly attached storage and execute user application tasks. We
worked on 2.40GHz CPU Speed Computer, windows operating system and 2 nodes. Any processor higher than this speed
can be used for more effective performance.
2.2 Data Analysis:
Our dataset consists of 5,23,471 rows in the Comma Separated Values (.CSV) file format. The dataset consists of the
date for which complaints were received ie. Products, sub- products, issues, responses for those issues, locations,
companies against which complaint is registered. In our analysis, we found that majority of the complaints were
submitted for Mortgage category. After analyzing we concluded that from 2011 to June 2016 complaints are constantly
increasing. With more investigating data, we found the states having maximum complaints along with company
names. It came to our knowledge that California followed by Florida and Texas are prime locations where complaints
are in maximum numbers.
2.3 Data Visualization:
Data visualization is a general term that describes any effort to help people understand the significance of data by placing
it in a visual context. Patterns, trends and correlations that might go undetected in text-based data can be exposed and
recognized easier with data visualization software. We have used Tableau software and IBM Watson Analytics for
visualization.
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 06 Issue: 03 | Mar 2019 www.irjet.net p-ISSN: 2395-0072
© 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 3232
2.4 Graphical Representations:
The data was raw which is analyzed and with suitable queries in Hive. We used following queries to analyze our
dataset and prepared graphs using Tableau software.
1) DROP TABLE IF EXISTS CC;
CREATE EXTERNAL TABLE CC (Date Received string, Product string, Sub Product string, Issue string, Sub Issue string,
Consumer complaint string, Company public response string, Company string, State string,ZIPcode string, Tags string,
Consumer consent string, Submitted via string, Date sent string, Company response string, Timely response string,
Consumer disputed string, Complaint ID string)
ROW FORMAT DELIMITED FIELDS TERMINATED BY ','
STORED AS TEXTFILE;
LOAD DATA INPATH 'wasb://khushbu-1@jolly.blob.core.windows.net/Consumer_Complaints.csv/'
OVERWRITE INTO TABLE CC;
2) State Query
DROP TABLE IF Exists CCS;
CREATE TABLE CCS AS
SELECT State, COUNT(State)
FROM CC
GROUP BY State;
3) Product Query
DROP TABLE IF EXISTS CCP;
CREATE TABLE CCP AS
SELECT Product, COUNT(Product)
FROM CC
GROUP BY Product;
4) Company Query
DROP TABLE IF EXISTS CCC;
CREATE TABLE CCC AS
SELECT Company, COUNT(Company)
FROM CC
GROUP BY Company;
5) Issue Query
DROP TABLE IF EXISTS CCIM;
CREATE TABLE CCIM AS
SELECT Issue, COUNT(Issue)
FROM CC
WHERE Product = 'Mortgage'
GROUP BY Issue;
6) DROP TABLE IF EXISTS CCIDC;
CREATE TABLE CCIDC AS
SELECT Issue, COUNT(Issue)
FROM CC
WHERE Product = 'Debt collection'
GROUP BY Issue;
7) Daterecieved Query
DROP TABLE IF EXISTS CCY;
CREATE TABLE CCY AS
SELECT Datereceived, COUNT(Daterecieved)
FROM CC
GROUP BY Daterecieved;
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 06 Issue: 03 | Mar 2019 www.irjet.net p-ISSN: 2395-0072
© 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 3233
8) TimelyResponse Query
DROP TABLE IF EXISTS CCTR;
CREATE TABLE CCTR AS
SELECT Timelyresponse, COUNT(Timelyresponse)
FROM CC
GROUP BY Timelyresponse;
9) Submittedvia Query
DROP TABLE IF Exists CCSV;
CREATE TABLE CCSV AS
SELECT Submittedvia, COUNT(Submitted via)
FROM CC
GROUP BY Submittedvia;
Graphs for the analysis:
1) Product wise analysis:
Figure (i): Product which is popularly being complained about
The figure (i) depicts which product category was reported maximum for issues.
2) Timely response from authority:
Figure (ii): TimelyResponse
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 06 Issue: 03 | Mar 2019 www.irjet.net p-ISSN: 2395-0072
© 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 3234
3) Company wise analysis:
Figure (iii): Company wise analysis
The above Figure (iii) shows from which Company is reported maximum for complaints.
4) Complaints According to Year:
Figure (iv): creditcardComplaints-year wise growth
The Figure (iv) represents the complaints registered every year.
We can see from the graph above that the number of complaints has a significant growth from year 2011 till date.
5) Means used for registering Complains:
Figure (v): Means for complains
The above Figure (v) depicts different ways used to file complain.
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 06 Issue: 03 | Mar 2019 www.irjet.net p-ISSN: 2395-0072
© 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 3235
6) States where most issues are arising:
Figure (vi): States where most issues are arising
7) Credit card analysis:
Figure (vii): ComplaintsSubmitted viaWeb, Referral, Postal media for credit card category
The above Figure (vii) represents the Complaints submitted via which medium for credit card category as it reported
highest for complaints.
3. Conclusions:
1. From the above mentioned analysis, it is seen that the credit card complaints are increasing since the year
2011. From the business point of view, the home loan objections can be decreased to a degree if the banks' records
are frequently checked by the powers and the banks ought to be advised to deliver and submit reports of their
exercises all the time barring the clients' private and classified information. Steps should be taken to verify all
documents and avoid customers dissatisfaction.
2. During this project we learned and improved our analytical skills. Working on Hadoop Distributed File System
helped us gain knowledge on Hive Query Language. Meanwhile we were able to represent queries into graphical
form.
3. In our detailed analysis, we were able to analyze and represent the maximum number of complaints in California
with the majority of complaints being of credit card Complaints. Also, through our analysis, we found which
banks are complained about the most and via which web are the complaints recorded. Also it came to our notice
that all complaints were timely responded.
4. This brought us to conclusion providing useful giving important aspects in regards to recurrence of complaints,
complaints from different places, about diverse products, sub-products and companies which make us aware and
take necessary steps to avoid them.
Dataset URL: http://catalog.data.gov/dataset/consumer-complaint- database
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 06 Issue: 03 | Mar 2019 www.irjet.net p-ISSN: 2395-0072
© 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 3236
GitHub Code:
https://github.com/khushbudesai/CIS-520/upload/master
4. References:
1. http://hadoop.apache.org/ https://azure.microsoft.com/en-us/services/hdinsight/
https://azure.microsoft.com/en-
2. us/documentation/articles/hdinsight-hadoop-tutorial-get- started-windows/
3. http://hortonworks.com/hadoop/
4. http://tableau.com/tableau-software

More Related Content

What's hot

Online Poverty Alleviation System in Bangladesh Context
Online Poverty Alleviation System in Bangladesh ContextOnline Poverty Alleviation System in Bangladesh Context
Online Poverty Alleviation System in Bangladesh ContextIRJET Journal
 
Big data - a review (2013 4)
Big data - a review (2013 4)Big data - a review (2013 4)
Big data - a review (2013 4)Sonu Gupta
 
Digital Manufacturing Study - 2013-2014 - Summary Charts
Digital Manufacturing Study - 2013-2014 - Summary ChartsDigital Manufacturing Study - 2013-2014 - Summary Charts
Digital Manufacturing Study - 2013-2014 - Summary ChartsLora Cecere
 
Web usage Mining Based on Request Dependency Graph
Web usage Mining Based on Request Dependency GraphWeb usage Mining Based on Request Dependency Graph
Web usage Mining Based on Request Dependency GraphIRJET Journal
 
January 2021©getty images healthcare systems and servi
January 2021©getty images healthcare systems and serviJanuary 2021©getty images healthcare systems and servi
January 2021©getty images healthcare systems and serviniraj57
 
Research on Legal Protection of Personal Data Privacy of E Commerce Platform ...
Research on Legal Protection of Personal Data Privacy of E Commerce Platform ...Research on Legal Protection of Personal Data Privacy of E Commerce Platform ...
Research on Legal Protection of Personal Data Privacy of E Commerce Platform ...YogeshIJTSRD
 
Running at the Speed of Digital: Hyper-Digital Information Management
Running at the Speed of Digital: Hyper-Digital Information ManagementRunning at the Speed of Digital: Hyper-Digital Information Management
Running at the Speed of Digital: Hyper-Digital Information ManagementCognizant
 
Verdantix Report: Urjanet Unravels Utility Billing with Big Energy Data Service
Verdantix Report: Urjanet Unravels Utility Billing with Big Energy Data ServiceVerdantix Report: Urjanet Unravels Utility Billing with Big Energy Data Service
Verdantix Report: Urjanet Unravels Utility Billing with Big Energy Data ServiceUrjanet
 
AUTOMATED TESTING OF LAB MANAGEMENT SERVICES ON CLOUD
AUTOMATED TESTING OF LAB MANAGEMENT SERVICES ON CLOUDAUTOMATED TESTING OF LAB MANAGEMENT SERVICES ON CLOUD
AUTOMATED TESTING OF LAB MANAGEMENT SERVICES ON CLOUDIndium Software
 
IDC Government Insights - Open Government Initiative Survey
IDC Government Insights - Open Government Initiative SurveyIDC Government Insights - Open Government Initiative Survey
IDC Government Insights - Open Government Initiative SurveyAri Herzog
 
IRJET - Centralized Data for Transport Automation System using Android St...
IRJET -  	  Centralized Data for Transport Automation System using Android St...IRJET -  	  Centralized Data for Transport Automation System using Android St...
IRJET - Centralized Data for Transport Automation System using Android St...IRJET Journal
 
Industry & firm Analysis Presentation
Industry & firm Analysis PresentationIndustry & firm Analysis Presentation
Industry & firm Analysis PresentationSchleighS
 

What's hot (14)

A DISTRIBUTED MACHINE LEARNING BASED IDS FOR CLOUD COMPUTING
A DISTRIBUTED MACHINE LEARNING BASED IDS FOR  CLOUD COMPUTINGA DISTRIBUTED MACHINE LEARNING BASED IDS FOR  CLOUD COMPUTING
A DISTRIBUTED MACHINE LEARNING BASED IDS FOR CLOUD COMPUTING
 
Online Poverty Alleviation System in Bangladesh Context
Online Poverty Alleviation System in Bangladesh ContextOnline Poverty Alleviation System in Bangladesh Context
Online Poverty Alleviation System in Bangladesh Context
 
Big data - a review (2013 4)
Big data - a review (2013 4)Big data - a review (2013 4)
Big data - a review (2013 4)
 
Digital Manufacturing Study - 2013-2014 - Summary Charts
Digital Manufacturing Study - 2013-2014 - Summary ChartsDigital Manufacturing Study - 2013-2014 - Summary Charts
Digital Manufacturing Study - 2013-2014 - Summary Charts
 
Web usage Mining Based on Request Dependency Graph
Web usage Mining Based on Request Dependency GraphWeb usage Mining Based on Request Dependency Graph
Web usage Mining Based on Request Dependency Graph
 
January 2021©getty images healthcare systems and servi
January 2021©getty images healthcare systems and serviJanuary 2021©getty images healthcare systems and servi
January 2021©getty images healthcare systems and servi
 
Research on Legal Protection of Personal Data Privacy of E Commerce Platform ...
Research on Legal Protection of Personal Data Privacy of E Commerce Platform ...Research on Legal Protection of Personal Data Privacy of E Commerce Platform ...
Research on Legal Protection of Personal Data Privacy of E Commerce Platform ...
 
Running at the Speed of Digital: Hyper-Digital Information Management
Running at the Speed of Digital: Hyper-Digital Information ManagementRunning at the Speed of Digital: Hyper-Digital Information Management
Running at the Speed of Digital: Hyper-Digital Information Management
 
Verdantix Report: Urjanet Unravels Utility Billing with Big Energy Data Service
Verdantix Report: Urjanet Unravels Utility Billing with Big Energy Data ServiceVerdantix Report: Urjanet Unravels Utility Billing with Big Energy Data Service
Verdantix Report: Urjanet Unravels Utility Billing with Big Energy Data Service
 
AUTOMATED TESTING OF LAB MANAGEMENT SERVICES ON CLOUD
AUTOMATED TESTING OF LAB MANAGEMENT SERVICES ON CLOUDAUTOMATED TESTING OF LAB MANAGEMENT SERVICES ON CLOUD
AUTOMATED TESTING OF LAB MANAGEMENT SERVICES ON CLOUD
 
IDC Government Insights - Open Government Initiative Survey
IDC Government Insights - Open Government Initiative SurveyIDC Government Insights - Open Government Initiative Survey
IDC Government Insights - Open Government Initiative Survey
 
IRJET - Centralized Data for Transport Automation System using Android St...
IRJET -  	  Centralized Data for Transport Automation System using Android St...IRJET -  	  Centralized Data for Transport Automation System using Android St...
IRJET - Centralized Data for Transport Automation System using Android St...
 
Big data applications
Big data applicationsBig data applications
Big data applications
 
Industry & firm Analysis Presentation
Industry & firm Analysis PresentationIndustry & firm Analysis Presentation
Industry & firm Analysis Presentation
 

Similar to IRJET- Consumer Complaint Data Analysis

DB_REPORT_final_revised
DB_REPORT_final_revisedDB_REPORT_final_revised
DB_REPORT_final_revisedRohan Singla
 
CFPB Consumer Complaints Report - Tableau
CFPB Consumer Complaints Report - TableauCFPB Consumer Complaints Report - Tableau
CFPB Consumer Complaints Report - TableauNisheet Mahajan
 
Mis case study , Chapter 5, Chapter 6
Mis case study , Chapter 5, Chapter 6Mis case study , Chapter 5, Chapter 6
Mis case study , Chapter 5, Chapter 6Rakib Hasan
 
IRJET - Municipal Corporation Complaint Management System
IRJET -  	  Municipal Corporation Complaint Management SystemIRJET -  	  Municipal Corporation Complaint Management System
IRJET - Municipal Corporation Complaint Management SystemIRJET Journal
 
Android Application for Updation
Android Application for UpdationAndroid Application for Updation
Android Application for UpdationIRJET Journal
 
Big data – A Review
Big data – A ReviewBig data – A Review
Big data – A ReviewIRJET Journal
 
IRJET- Competitive Analysis of Attacks on Social Media
IRJET-  	 Competitive Analysis of Attacks on Social MediaIRJET-  	 Competitive Analysis of Attacks on Social Media
IRJET- Competitive Analysis of Attacks on Social MediaIRJET Journal
 
IRJET- Customized CRM Mobile Application for Retail Industry
IRJET-  	  Customized CRM Mobile Application for Retail IndustryIRJET-  	  Customized CRM Mobile Application for Retail Industry
IRJET- Customized CRM Mobile Application for Retail IndustryIRJET Journal
 
The programmable RegTech Eco System by Liv Apneseth Watson
The programmable RegTech Eco System by Liv Apneseth WatsonThe programmable RegTech Eco System by Liv Apneseth Watson
The programmable RegTech Eco System by Liv Apneseth WatsonWorkiva
 
Strategies to Monetize Energy Data - How Utilities Can Increase Their 'Earnin...
Strategies to Monetize Energy Data - How Utilities Can Increase Their 'Earnin...Strategies to Monetize Energy Data - How Utilities Can Increase Their 'Earnin...
Strategies to Monetize Energy Data - How Utilities Can Increase Their 'Earnin...Indigo Advisory Group
 
Implementation of Sentimental Analysis of Social Media for Stock Prediction ...
Implementation of Sentimental Analysis of Social Media for Stock  Prediction ...Implementation of Sentimental Analysis of Social Media for Stock  Prediction ...
Implementation of Sentimental Analysis of Social Media for Stock Prediction ...IRJET Journal
 
2192021 originality reporthttpsucumberlands.blackboar
2192021 originality reporthttpsucumberlands.blackboar2192021 originality reporthttpsucumberlands.blackboar
2192021 originality reporthttpsucumberlands.blackboarssusera34210
 
Big data analytics for life insurers
Big data analytics for life insurersBig data analytics for life insurers
Big data analytics for life insurersdipak sahoo
 
Big_data_analytics_for_life_insurers_published
Big_data_analytics_for_life_insurers_publishedBig_data_analytics_for_life_insurers_published
Big_data_analytics_for_life_insurers_publishedShradha Verma
 
#Mcanada mobile apps stein 11.15
#Mcanada mobile apps stein 11.15#Mcanada mobile apps stein 11.15
#Mcanada mobile apps stein 11.15APS Marketing
 
IRJET - Hyper Local Delivery Application
IRJET - Hyper Local Delivery ApplicationIRJET - Hyper Local Delivery Application
IRJET - Hyper Local Delivery ApplicationIRJET Journal
 
IRJET- E-Commerce Recommender System using Data Mining Algorithms
IRJET-  	  E-Commerce Recommender System using Data Mining AlgorithmsIRJET-  	  E-Commerce Recommender System using Data Mining Algorithms
IRJET- E-Commerce Recommender System using Data Mining AlgorithmsIRJET Journal
 
The Business Value of Commvault Software IDC 2016 US40773815
The Business Value of Commvault Software IDC 2016 US40773815The Business Value of Commvault Software IDC 2016 US40773815
The Business Value of Commvault Software IDC 2016 US40773815Charles Uprichard
 

Similar to IRJET- Consumer Complaint Data Analysis (20)

Relational Database
Relational DatabaseRelational Database
Relational Database
 
DB_REPORT_final_revised
DB_REPORT_final_revisedDB_REPORT_final_revised
DB_REPORT_final_revised
 
CFPB Consumer Complaints Report - Tableau
CFPB Consumer Complaints Report - TableauCFPB Consumer Complaints Report - Tableau
CFPB Consumer Complaints Report - Tableau
 
Mis case study , Chapter 5, Chapter 6
Mis case study , Chapter 5, Chapter 6Mis case study , Chapter 5, Chapter 6
Mis case study , Chapter 5, Chapter 6
 
IRJET - Municipal Corporation Complaint Management System
IRJET -  	  Municipal Corporation Complaint Management SystemIRJET -  	  Municipal Corporation Complaint Management System
IRJET - Municipal Corporation Complaint Management System
 
Android Application for Updation
Android Application for UpdationAndroid Application for Updation
Android Application for Updation
 
Big data – A Review
Big data – A ReviewBig data – A Review
Big data – A Review
 
Telecoms + It
Telecoms + ItTelecoms + It
Telecoms + It
 
IRJET- Competitive Analysis of Attacks on Social Media
IRJET-  	 Competitive Analysis of Attacks on Social MediaIRJET-  	 Competitive Analysis of Attacks on Social Media
IRJET- Competitive Analysis of Attacks on Social Media
 
IRJET- Customized CRM Mobile Application for Retail Industry
IRJET-  	  Customized CRM Mobile Application for Retail IndustryIRJET-  	  Customized CRM Mobile Application for Retail Industry
IRJET- Customized CRM Mobile Application for Retail Industry
 
The programmable RegTech Eco System by Liv Apneseth Watson
The programmable RegTech Eco System by Liv Apneseth WatsonThe programmable RegTech Eco System by Liv Apneseth Watson
The programmable RegTech Eco System by Liv Apneseth Watson
 
Strategies to Monetize Energy Data - How Utilities Can Increase Their 'Earnin...
Strategies to Monetize Energy Data - How Utilities Can Increase Their 'Earnin...Strategies to Monetize Energy Data - How Utilities Can Increase Their 'Earnin...
Strategies to Monetize Energy Data - How Utilities Can Increase Their 'Earnin...
 
Implementation of Sentimental Analysis of Social Media for Stock Prediction ...
Implementation of Sentimental Analysis of Social Media for Stock  Prediction ...Implementation of Sentimental Analysis of Social Media for Stock  Prediction ...
Implementation of Sentimental Analysis of Social Media for Stock Prediction ...
 
2192021 originality reporthttpsucumberlands.blackboar
2192021 originality reporthttpsucumberlands.blackboar2192021 originality reporthttpsucumberlands.blackboar
2192021 originality reporthttpsucumberlands.blackboar
 
Big data analytics for life insurers
Big data analytics for life insurersBig data analytics for life insurers
Big data analytics for life insurers
 
Big_data_analytics_for_life_insurers_published
Big_data_analytics_for_life_insurers_publishedBig_data_analytics_for_life_insurers_published
Big_data_analytics_for_life_insurers_published
 
#Mcanada mobile apps stein 11.15
#Mcanada mobile apps stein 11.15#Mcanada mobile apps stein 11.15
#Mcanada mobile apps stein 11.15
 
IRJET - Hyper Local Delivery Application
IRJET - Hyper Local Delivery ApplicationIRJET - Hyper Local Delivery Application
IRJET - Hyper Local Delivery Application
 
IRJET- E-Commerce Recommender System using Data Mining Algorithms
IRJET-  	  E-Commerce Recommender System using Data Mining AlgorithmsIRJET-  	  E-Commerce Recommender System using Data Mining Algorithms
IRJET- E-Commerce Recommender System using Data Mining Algorithms
 
The Business Value of Commvault Software IDC 2016 US40773815
The Business Value of Commvault Software IDC 2016 US40773815The Business Value of Commvault Software IDC 2016 US40773815
The Business Value of Commvault Software IDC 2016 US40773815
 

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

OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...Soham Mondal
 
Introduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxIntroduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxupamatechverse
 
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝soniya singh
 
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130Suhani Kapoor
 
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptx
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptxthe ladakh protest in leh ladakh 2024 sonam wangchuk.pptx
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptxhumanexperienceaaa
 
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
 
main PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfidmain PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfidNikhilNagaraju
 
Software Development Life Cycle By Team Orange (Dept. of Pharmacy)
Software Development Life Cycle By  Team Orange (Dept. of Pharmacy)Software Development Life Cycle By  Team Orange (Dept. of Pharmacy)
Software Development Life Cycle By Team Orange (Dept. of Pharmacy)Suman Mia
 
What are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxWhat are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxwendy cai
 
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSMANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSSIVASHANKAR N
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxpurnimasatapathy1234
 
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
 
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escortsranjana rawat
 
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 Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile serviceCall Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile servicerehmti665
 
(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 and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxIntroduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxupamatechverse
 

Recently uploaded (20)

OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
 
Introduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxIntroduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptx
 
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
 
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
 
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
 
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptx
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptxthe ladakh protest in leh ladakh 2024 sonam wangchuk.pptx
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptx
 
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
 
main PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfidmain PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfid
 
Software Development Life Cycle By Team Orange (Dept. of Pharmacy)
Software Development Life Cycle By  Team Orange (Dept. of Pharmacy)Software Development Life Cycle By  Team Orange (Dept. of Pharmacy)
Software Development Life Cycle By Team Orange (Dept. of Pharmacy)
 
What are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxWhat are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptx
 
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSMANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
 
Roadmap to Membership of RICS - Pathways and Routes
Roadmap to Membership of RICS - Pathways and RoutesRoadmap to Membership of RICS - Pathways and Routes
Roadmap to Membership of RICS - Pathways and Routes
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptx
 
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
 
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha 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 Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile serviceCall Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile service
 
(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 and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxIntroduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptx
 

IRJET- Consumer Complaint Data Analysis

  • 1. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 06 Issue: 03 | Mar 2019 www.irjet.net p-ISSN: 2395-0072 © 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 3231 Consumer Complaint Data Analysis P. Rupesh1, P. Gunasekhar2, T.M.Achyuth3, Y. Venkata Krishna4 1,2,3,4R.M.K Engineering College, Chennai, Tamilnadu --------------------------------------------------------------------***------------------------------------------------------------------------- Abstract:- Each week, the thousands of consumer's complaints about financial protection, services or crash databases of banks to companies for response. Those complaints are published here after the company responds or after 15 days, whichever comes first. By submitting a complaint, consumers can be heard by financial companies, get help with their own issues, and help others avoid similar ones. Every complaint provides insight into problems that people are experiencing, helping us identify inappropriate practices and allowing us to stop them before they become major issues. The analysis highlights how text mining analysis can help unlock the wealth of information contained in consumer complaint databases. The aim is better outcomes for consumers, and a better financial marketplace for everyone. 1. Introduction: Previous studies define a complaint as a conflict between a consumer and a business organization in which the fairness of the resolution procedures, the interpersonal communication and behavior, and the outcome of the complaint resolution process are the principal evaluative criteria used by the customer. In our opinion, a complaint is not necessary a conflict, however, it can create a conflict between a customer and a business organization, when the answer to the consumer’s complaint is not satisfactory. The consumer complaint data set handles all complaints according to states, products, zip codes, company and sub product categories. Our analysis is primarily focused on Mortgage complaints as maximum complaints are registered for this sector. Followed by debit collection and credit reporting complaints. 2. Background Work: Our dataset is available as Consumer Complaint data on www.data.gov. Data is in Comma Separated File (.csv) format of size 290mb. Dataset contains complaints from 2011 to June 2016. We used “Cloud Berry” explorer- an online storage service provided by Amazon Web Service. We uploaded our data on cloud berry which helps to move data from local computer and cloud. Cloud Berry allows accessing and managing azure accounts. We graphically represented our analysis using Tableau software and IBM Watson analytics. 2.1 Data Storage: The Unstructured Data is stored in Hadoop Distributed File System (HDFS). The Hadoop Distributed File System (HDFS) is designed to store very large data sets reliably, and to stream those data sets at high bandwidth to user applications. In a large cluster, thousands of servers both host directly attached storage and execute user application tasks. We worked on 2.40GHz CPU Speed Computer, windows operating system and 2 nodes. Any processor higher than this speed can be used for more effective performance. 2.2 Data Analysis: Our dataset consists of 5,23,471 rows in the Comma Separated Values (.CSV) file format. The dataset consists of the date for which complaints were received ie. Products, sub- products, issues, responses for those issues, locations, companies against which complaint is registered. In our analysis, we found that majority of the complaints were submitted for Mortgage category. After analyzing we concluded that from 2011 to June 2016 complaints are constantly increasing. With more investigating data, we found the states having maximum complaints along with company names. It came to our knowledge that California followed by Florida and Texas are prime locations where complaints are in maximum numbers. 2.3 Data Visualization: Data visualization is a general term that describes any effort to help people understand the significance of data by placing it in a visual context. Patterns, trends and correlations that might go undetected in text-based data can be exposed and recognized easier with data visualization software. We have used Tableau software and IBM Watson Analytics for visualization.
  • 2. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 06 Issue: 03 | Mar 2019 www.irjet.net p-ISSN: 2395-0072 © 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 3232 2.4 Graphical Representations: The data was raw which is analyzed and with suitable queries in Hive. We used following queries to analyze our dataset and prepared graphs using Tableau software. 1) DROP TABLE IF EXISTS CC; CREATE EXTERNAL TABLE CC (Date Received string, Product string, Sub Product string, Issue string, Sub Issue string, Consumer complaint string, Company public response string, Company string, State string,ZIPcode string, Tags string, Consumer consent string, Submitted via string, Date sent string, Company response string, Timely response string, Consumer disputed string, Complaint ID string) ROW FORMAT DELIMITED FIELDS TERMINATED BY ',' STORED AS TEXTFILE; LOAD DATA INPATH 'wasb://khushbu-1@jolly.blob.core.windows.net/Consumer_Complaints.csv/' OVERWRITE INTO TABLE CC; 2) State Query DROP TABLE IF Exists CCS; CREATE TABLE CCS AS SELECT State, COUNT(State) FROM CC GROUP BY State; 3) Product Query DROP TABLE IF EXISTS CCP; CREATE TABLE CCP AS SELECT Product, COUNT(Product) FROM CC GROUP BY Product; 4) Company Query DROP TABLE IF EXISTS CCC; CREATE TABLE CCC AS SELECT Company, COUNT(Company) FROM CC GROUP BY Company; 5) Issue Query DROP TABLE IF EXISTS CCIM; CREATE TABLE CCIM AS SELECT Issue, COUNT(Issue) FROM CC WHERE Product = 'Mortgage' GROUP BY Issue; 6) DROP TABLE IF EXISTS CCIDC; CREATE TABLE CCIDC AS SELECT Issue, COUNT(Issue) FROM CC WHERE Product = 'Debt collection' GROUP BY Issue; 7) Daterecieved Query DROP TABLE IF EXISTS CCY; CREATE TABLE CCY AS SELECT Datereceived, COUNT(Daterecieved) FROM CC GROUP BY Daterecieved;
  • 3. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 06 Issue: 03 | Mar 2019 www.irjet.net p-ISSN: 2395-0072 © 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 3233 8) TimelyResponse Query DROP TABLE IF EXISTS CCTR; CREATE TABLE CCTR AS SELECT Timelyresponse, COUNT(Timelyresponse) FROM CC GROUP BY Timelyresponse; 9) Submittedvia Query DROP TABLE IF Exists CCSV; CREATE TABLE CCSV AS SELECT Submittedvia, COUNT(Submitted via) FROM CC GROUP BY Submittedvia; Graphs for the analysis: 1) Product wise analysis: Figure (i): Product which is popularly being complained about The figure (i) depicts which product category was reported maximum for issues. 2) Timely response from authority: Figure (ii): TimelyResponse
  • 4. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 06 Issue: 03 | Mar 2019 www.irjet.net p-ISSN: 2395-0072 © 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 3234 3) Company wise analysis: Figure (iii): Company wise analysis The above Figure (iii) shows from which Company is reported maximum for complaints. 4) Complaints According to Year: Figure (iv): creditcardComplaints-year wise growth The Figure (iv) represents the complaints registered every year. We can see from the graph above that the number of complaints has a significant growth from year 2011 till date. 5) Means used for registering Complains: Figure (v): Means for complains The above Figure (v) depicts different ways used to file complain.
  • 5. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 06 Issue: 03 | Mar 2019 www.irjet.net p-ISSN: 2395-0072 © 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 3235 6) States where most issues are arising: Figure (vi): States where most issues are arising 7) Credit card analysis: Figure (vii): ComplaintsSubmitted viaWeb, Referral, Postal media for credit card category The above Figure (vii) represents the Complaints submitted via which medium for credit card category as it reported highest for complaints. 3. Conclusions: 1. From the above mentioned analysis, it is seen that the credit card complaints are increasing since the year 2011. From the business point of view, the home loan objections can be decreased to a degree if the banks' records are frequently checked by the powers and the banks ought to be advised to deliver and submit reports of their exercises all the time barring the clients' private and classified information. Steps should be taken to verify all documents and avoid customers dissatisfaction. 2. During this project we learned and improved our analytical skills. Working on Hadoop Distributed File System helped us gain knowledge on Hive Query Language. Meanwhile we were able to represent queries into graphical form. 3. In our detailed analysis, we were able to analyze and represent the maximum number of complaints in California with the majority of complaints being of credit card Complaints. Also, through our analysis, we found which banks are complained about the most and via which web are the complaints recorded. Also it came to our notice that all complaints were timely responded. 4. This brought us to conclusion providing useful giving important aspects in regards to recurrence of complaints, complaints from different places, about diverse products, sub-products and companies which make us aware and take necessary steps to avoid them. Dataset URL: http://catalog.data.gov/dataset/consumer-complaint- database
  • 6. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 06 Issue: 03 | Mar 2019 www.irjet.net p-ISSN: 2395-0072 © 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 3236 GitHub Code: https://github.com/khushbudesai/CIS-520/upload/master 4. References: 1. http://hadoop.apache.org/ https://azure.microsoft.com/en-us/services/hdinsight/ https://azure.microsoft.com/en- 2. us/documentation/articles/hdinsight-hadoop-tutorial-get- started-windows/ 3. http://hortonworks.com/hadoop/ 4. http://tableau.com/tableau-software