SlideShare a Scribd company logo
1 of 4
Download to read offline
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 09 Issue: 12 | Dec 2022 www.irjet.net p-ISSN: 2395-0072
© 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 1341
BIG MART SALES PREDICTION USING MACHINE LEARNING
1Kasireddy Raghuvardhan Reddy, 2Kolipaka Rajesh, 3Bhukya Pavan Kalyan, 4 V. Prabhakar
4Assistant Professor, Department of Computer Science and Engineering, SNIST, Hyderabad-501301, India
1,2,3B. Tech Scholars, Department of Computer Science and Engineering, SNIST, Hyderabad-501301, India
---------------------------------------------------------------------***---------------------------------------------------------------------
Abstract: - Supermarkets and their franchises are
increasing a lot in recent times. At this moment to
increase their sales, they have to predict the sales of the
items. Thereby they can protect themselves from losses
and they can generate profits. So, this analysis will
require a lot of time and effort.So,weproposedamachine
learning model that will use the XGBoost Regressor to
predict the sales of the items. Thereby marts can plan
their recruitment strategy, perceive challenges early,
motivate the sales team, predict revenue, aid future
marketing plans, and helps in many more ways.
I. INTRODUCTION
At present, there are many supermarkets and there is high
competition between them. If any mart wants to win the
competition it has to make more sales than any other
competitor. The mart can increase sales by knowing
products/items which will generate more sales and those
that will generate low sales. This analysis is tedious. So with
the proposed system, the mart can predict the sales, thereby
marts can take necessary steps. This is a user-friendly
system. When the user submitted detailsofa particularitem,
the system will predict sales generated by that item. Hence,
this leads to winning in the competition and an increase in
sales.
II. LITERATURE SURVEY
Earlier we are having different methods for predicting the
sales such as:
Expert’s Opinion Method: Here, marketing and sales
professionals will make sales predictions. Analysis and sales
forecasting are labor-intensive tasks. However, predictions
can also be inaccurate for a variety of reasons, including a
lack of enthusiasm for the task being performed and other
problems.
Survey of Buyer’s Expectations: In this case, the store will
poll customers based on their preferences, enabling it to
forecast which productswouldresultinthegreatestincrease
in sales. The actual purchases could differ from the declared
aims, though. Unfortunately, it caused incorrect sales
predictions at the time.
To overcome those drawbacks we proposed a model
which was developed usingmachinelearning.Inthis,weused
XGBoost Regressor for predicting the sales based on the
customer purchases but not on the expert’s opinion and
survey results. We would get accurate results compared to
the previous system.
III. DATASET
A collection of data points that a computer may use to
analyze and anticipate a situation as a whole. Internet
information was gathered for the Kaggle.com website. The
test data set used in this study comprises 8542 rows as well
as 12 categories, which have beentrainedtodeliverthe most
accurate prediction outcomes.
Fig:1 Data set used
IV. METHODOLOGY
Fig: 2 Data flow Diagram
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 09 Issue: 12 | Dec 2022 www.irjet.net p-ISSN: 2395-0072
© 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 1342
V. DATA PREPROCESSING
5.1 Filling Missing Values
In data preprocessing, we will find and fill themissingvalues
with either mean, mode, or median.
Fig:3 Filling missing values
5.2 Removing Unwanted Attributes
Fig 4: Removing Unwanted Attributes
5.3 Exploratory Data Analysis
Exploratory data analysis is the crucial process of doing
preliminary analyses of data in order to find patterns,
identify anomalies, test hypotheses, and double-check
assumptions with the use of summary statistics and
graphical representations.
Data Visualization
By putting the data in a graphical framework,suchasgraphs,
and visualization of thedata providesa betterunderstanding
of what that implies.
This makes it easier for us to interpret the data intuitively
and to spot patterns, trends, and abnormalities in large
datasets.
Fig 5 : heatmap for data visualization
5.4 Data Cleaning
Cleaning the dataset by making names of attributes from
initial capital letters to small letters.
Fig 6: cleaning the data
5.5 Label Encoding
Label encoding is the process of transforming labels into a
numeric form so that they may be read by machines. The
operation of such labels can then be better determined by
machine learning techniques. For the structured dataset in
supervised learning, it is a crucial pre-processing step.
Fig 7: Label Encoding
5.6 Splitting the training and testing data
The training and testing sets for the dataset weregoingto be
separated. Two separate datasets are not imported for train
and testing in order to prevent the overfitting process. The
same dataset is thus divided into train and test sets. The
datasets utilized to train and test our model are referred to
Those attributes which will not involveinthe prediction can
be removed.
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 09 Issue: 12 | Dec 2022 www.irjet.net p-ISSN: 2395-0072
© 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 1343
collectively as the training dataset and the testing dataset,
respectively.
Fig 8 : splitting training and testing data
5.7 Standardization
By utilizing the mean and standard deviation as the starting
point to obtain particular values, data values are rescaled to
fit the distribution between 0 and 1. This is known as
standardization.
Fig 9: Standardization
5.8 Evaluation Metrics
The assessment of the model is a vital stage in creating a
successful machine-learning model. It is essential tocreatea
model and get metrics suggestions from it as a consequence.
It will happen and keep happening until we achieve high
accuracy in line with the value achieved through metric
improvements.
Evaluation metrics are used to describe the output of one
model. The ability of the assessment metrics to distinguish
between various model outputs is animportantfeature. This
assessment approach made use of the Root Mean Squared
Error (RMSE)metric.
R-squared is a statistical indicator of how well a regression
model fits the data. R-square should be set to a value of 1.
The fit of the model is improved by the r-square value being
near 1.
VI. MODEL BUILDING
After data preprocessing, the datasetisnowreadytobe used
to build a predictive model. Training data is provided to the
algorithm to train it to forecast values. The model creates a
target variable to forecast before receiving input from the
testing data. The XGBoost Regressor is used to construct the
prediction model.
XGBOOST:
Decision trees and gradient boosting are combinedinthe XG
Boost method. The method's development was intended to
maximize the efficiency of memory and processing
resources. The ensemble idea serves as the foundation for
the sequential "boosting" procedure. The accuracy rate is
increased as a consequence, and a group of slow learners is
added. At each instant t, the weights of the model variables
are determined by the impact of the instant before.
Outcomes that are correctly computed have a lower weight
than results that are incorrectly computed, which have a
greater weight.
Internally, the XGBoost model implements stepwise ridge
regression using this method, which automatically selects
features and eliminates repeated regressions.
Fig 10: Building the model
VII.RESULT
After testing the model with testing data, we will find the
RMSE (Root Mean Square Error), r2_score for accuracy, and
mean absolute error.
Fig 11: Results
VIII. CONCLUSION
We are predicting the XG Boost Regressor's accuracy. Large
markets benefit from our projections by improving their
methods and tactics, which boosts their profitability. The
expected outcomes will be highly helpful for the company's
leaders to understand their sales and profitability. This will
also inspire them to create moreBigmartStoresorbranches.
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 09 Issue: 12 | Dec 2022 www.irjet.net p-ISSN: 2395-0072
© 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 1344
IX. REFERENCES
[1] Ayesha Syed, Asha Jyothi Kalluri, Venkateswara
Reddy Pocha, Venkata Arun Kumar Dasari,
B.Ramasubbaiah (2020, FEB). “BIGMART SALES
USING MACHINE LEARNING WITH DATA
ANALYSIS”. In JES (Vol 11,Issue 2).
[2] Aaditi Narkhede, Mitali Awari, Suvarna Gawali,
Prof.Amrapal Mhaisgawali. “BigMart Sales
Prediction Using Machine Learning Techniques”
Naveenraj R and Vinayaga Sundharam R
[3] “PREDICTION OF BIG MART SALES USING
MACHINE LEARNING” in IRJMETS
(Volume:03/Issue:09/September-2021)
[4] Rohit Sav, Pratiksha Shinde, Saurabh Gaikwad “BIG
MART SALES PREDICTION USING MACHINE
LEARNING”
[5] Predicitive Analysis for Big Mart Sales Using
Machine LearningAlgorithm”inIJRASETVolume10
Issue VIII August 2022
[6] Nayana R, Chaithanya G, Meghana T, Narahari K S,
Sushma M “Predictive Analysis for Big Mart Sales
using Machine Learning Algorithms” in IJERT
RTCSIT – 2022 (Volume 10 – Issue 12)

More Related Content

Similar to BIG MART SALES PREDICTION USING MACHINE LEARNING

Egypt hackathon 2014 analytics & spss session
Egypt hackathon 2014   analytics & spss sessionEgypt hackathon 2014   analytics & spss session
Egypt hackathon 2014 analytics & spss sessionM Baddar
 
IJSCAI PAPER UPLOADING.pdf
IJSCAI PAPER UPLOADING.pdfIJSCAI PAPER UPLOADING.pdf
IJSCAI PAPER UPLOADING.pdfijscai
 
INTELLIGENT ALGORYTHM FOR IMMEDIATE FINANCIAL STRATEGY FOR SMES
INTELLIGENT ALGORYTHM FOR IMMEDIATE FINANCIAL STRATEGY FOR SMESINTELLIGENT ALGORYTHM FOR IMMEDIATE FINANCIAL STRATEGY FOR SMES
INTELLIGENT ALGORYTHM FOR IMMEDIATE FINANCIAL STRATEGY FOR SMESijscai
 
Shipment Time Prediction for Maritime Industry using Machine Learning
Shipment Time Prediction for Maritime Industry using Machine LearningShipment Time Prediction for Maritime Industry using Machine Learning
Shipment Time Prediction for Maritime Industry using Machine LearningIRJET Journal
 
STOCK PRICE PREDICTION USING MACHINE LEARNING [RANDOM FOREST REGRESSION MODEL]
STOCK PRICE PREDICTION USING MACHINE LEARNING [RANDOM FOREST REGRESSION MODEL]STOCK PRICE PREDICTION USING MACHINE LEARNING [RANDOM FOREST REGRESSION MODEL]
STOCK PRICE PREDICTION USING MACHINE LEARNING [RANDOM FOREST REGRESSION MODEL]IRJET Journal
 
INTELLIGENT ALGORYTHM FOR IMMEDIATE FINANCIAL STRATEGY FOR SMES
INTELLIGENT ALGORYTHM FOR IMMEDIATE FINANCIAL STRATEGY FOR SMESINTELLIGENT ALGORYTHM FOR IMMEDIATE FINANCIAL STRATEGY FOR SMES
INTELLIGENT ALGORYTHM FOR IMMEDIATE FINANCIAL STRATEGY FOR SMESijscai
 
Loan Analysis Predicting Defaulters
Loan Analysis Predicting DefaultersLoan Analysis Predicting Defaulters
Loan Analysis Predicting DefaultersIRJET Journal
 
IRJET- Comparison of Classification Algorithms using Machine Learning
IRJET- Comparison of Classification Algorithms using Machine LearningIRJET- Comparison of Classification Algorithms using Machine Learning
IRJET- Comparison of Classification Algorithms using Machine LearningIRJET Journal
 
Black_Friday_Sales_Trushita
Black_Friday_Sales_TrushitaBlack_Friday_Sales_Trushita
Black_Friday_Sales_TrushitaTrushita Redij
 
Web Mine Customer Relationship Management
Web Mine Customer Relationship ManagementWeb Mine Customer Relationship Management
Web Mine Customer Relationship ManagementIRJET Journal
 
Data science in demand planning - when the machine is not enough
Data science in demand planning - when the machine is not enoughData science in demand planning - when the machine is not enough
Data science in demand planning - when the machine is not enoughTristan Wiggill
 
IRJET - Breast Cancer Risk and Diagnostics using Artificial Neural Network(ANN)
IRJET - Breast Cancer Risk and Diagnostics using Artificial Neural Network(ANN)IRJET - Breast Cancer Risk and Diagnostics using Artificial Neural Network(ANN)
IRJET - Breast Cancer Risk and Diagnostics using Artificial Neural Network(ANN)IRJET Journal
 
CUSTOMER SEGMENTATION IN SHOPPING MALL USING CLUSTERING IN MACHINE LEARNING
CUSTOMER SEGMENTATION IN SHOPPING MALL USING CLUSTERING IN MACHINE LEARNINGCUSTOMER SEGMENTATION IN SHOPPING MALL USING CLUSTERING IN MACHINE LEARNING
CUSTOMER SEGMENTATION IN SHOPPING MALL USING CLUSTERING IN MACHINE LEARNINGIRJET Journal
 
IRJET- Automated CV Classification using Clustering Technique
IRJET- Automated CV Classification using Clustering TechniqueIRJET- Automated CV Classification using Clustering Technique
IRJET- Automated CV Classification using Clustering TechniqueIRJET Journal
 
Recommender System- Analyzing products by mining Data Streams
Recommender System- Analyzing products by mining Data StreamsRecommender System- Analyzing products by mining Data Streams
Recommender System- Analyzing products by mining Data StreamsIRJET 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
 
IRJET - Job Portal Analysis and Salary Prediction System
IRJET -  	  Job Portal Analysis and Salary Prediction SystemIRJET -  	  Job Portal Analysis and Salary Prediction System
IRJET - Job Portal Analysis and Salary Prediction SystemIRJET Journal
 
Tax Prediction Using Machine Learning
Tax Prediction Using Machine LearningTax Prediction Using Machine Learning
Tax Prediction Using Machine LearningIRJET Journal
 
Review on Sentiment Analysis on Customer Reviews
Review on Sentiment Analysis on Customer ReviewsReview on Sentiment Analysis on Customer Reviews
Review on Sentiment Analysis on Customer ReviewsIRJET Journal
 

Similar to BIG MART SALES PREDICTION USING MACHINE LEARNING (20)

Egypt hackathon 2014 analytics & spss session
Egypt hackathon 2014   analytics & spss sessionEgypt hackathon 2014   analytics & spss session
Egypt hackathon 2014 analytics & spss session
 
IJSCAI PAPER UPLOADING.pdf
IJSCAI PAPER UPLOADING.pdfIJSCAI PAPER UPLOADING.pdf
IJSCAI PAPER UPLOADING.pdf
 
INTELLIGENT ALGORYTHM FOR IMMEDIATE FINANCIAL STRATEGY FOR SMES
INTELLIGENT ALGORYTHM FOR IMMEDIATE FINANCIAL STRATEGY FOR SMESINTELLIGENT ALGORYTHM FOR IMMEDIATE FINANCIAL STRATEGY FOR SMES
INTELLIGENT ALGORYTHM FOR IMMEDIATE FINANCIAL STRATEGY FOR SMES
 
Shipment Time Prediction for Maritime Industry using Machine Learning
Shipment Time Prediction for Maritime Industry using Machine LearningShipment Time Prediction for Maritime Industry using Machine Learning
Shipment Time Prediction for Maritime Industry using Machine Learning
 
STOCK PRICE PREDICTION USING MACHINE LEARNING [RANDOM FOREST REGRESSION MODEL]
STOCK PRICE PREDICTION USING MACHINE LEARNING [RANDOM FOREST REGRESSION MODEL]STOCK PRICE PREDICTION USING MACHINE LEARNING [RANDOM FOREST REGRESSION MODEL]
STOCK PRICE PREDICTION USING MACHINE LEARNING [RANDOM FOREST REGRESSION MODEL]
 
INTELLIGENT ALGORYTHM FOR IMMEDIATE FINANCIAL STRATEGY FOR SMES
INTELLIGENT ALGORYTHM FOR IMMEDIATE FINANCIAL STRATEGY FOR SMESINTELLIGENT ALGORYTHM FOR IMMEDIATE FINANCIAL STRATEGY FOR SMES
INTELLIGENT ALGORYTHM FOR IMMEDIATE FINANCIAL STRATEGY FOR SMES
 
Loan Analysis Predicting Defaulters
Loan Analysis Predicting DefaultersLoan Analysis Predicting Defaulters
Loan Analysis Predicting Defaulters
 
IRJET- Comparison of Classification Algorithms using Machine Learning
IRJET- Comparison of Classification Algorithms using Machine LearningIRJET- Comparison of Classification Algorithms using Machine Learning
IRJET- Comparison of Classification Algorithms using Machine Learning
 
Black_Friday_Sales_Trushita
Black_Friday_Sales_TrushitaBlack_Friday_Sales_Trushita
Black_Friday_Sales_Trushita
 
Predictive Modeling Development Life Cycle
Predictive Modeling Development Life CyclePredictive Modeling Development Life Cycle
Predictive Modeling Development Life Cycle
 
Web Mine Customer Relationship Management
Web Mine Customer Relationship ManagementWeb Mine Customer Relationship Management
Web Mine Customer Relationship Management
 
Data science in demand planning - when the machine is not enough
Data science in demand planning - when the machine is not enoughData science in demand planning - when the machine is not enough
Data science in demand planning - when the machine is not enough
 
IRJET - Breast Cancer Risk and Diagnostics using Artificial Neural Network(ANN)
IRJET - Breast Cancer Risk and Diagnostics using Artificial Neural Network(ANN)IRJET - Breast Cancer Risk and Diagnostics using Artificial Neural Network(ANN)
IRJET - Breast Cancer Risk and Diagnostics using Artificial Neural Network(ANN)
 
CUSTOMER SEGMENTATION IN SHOPPING MALL USING CLUSTERING IN MACHINE LEARNING
CUSTOMER SEGMENTATION IN SHOPPING MALL USING CLUSTERING IN MACHINE LEARNINGCUSTOMER SEGMENTATION IN SHOPPING MALL USING CLUSTERING IN MACHINE LEARNING
CUSTOMER SEGMENTATION IN SHOPPING MALL USING CLUSTERING IN MACHINE LEARNING
 
IRJET- Automated CV Classification using Clustering Technique
IRJET- Automated CV Classification using Clustering TechniqueIRJET- Automated CV Classification using Clustering Technique
IRJET- Automated CV Classification using Clustering Technique
 
Recommender System- Analyzing products by mining Data Streams
Recommender System- Analyzing products by mining Data StreamsRecommender System- Analyzing products by mining Data Streams
Recommender System- Analyzing products by mining Data Streams
 
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
 
IRJET - Job Portal Analysis and Salary Prediction System
IRJET -  	  Job Portal Analysis and Salary Prediction SystemIRJET -  	  Job Portal Analysis and Salary Prediction System
IRJET - Job Portal Analysis and Salary Prediction System
 
Tax Prediction Using Machine Learning
Tax Prediction Using Machine LearningTax Prediction Using Machine Learning
Tax Prediction Using Machine Learning
 
Review on Sentiment Analysis on Customer Reviews
Review on Sentiment Analysis on Customer ReviewsReview on Sentiment Analysis on Customer Reviews
Review on Sentiment Analysis on Customer Reviews
 

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

Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Dr.Costas Sachpazis
 
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Serviceranjana rawat
 
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...srsj9000
 
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINEMANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINESIVASHANKAR N
 
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Dr.Costas Sachpazis
 
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
 
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
 
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
 
Introduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxIntroduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxupamatechverse
 
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSAPPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSKurinjimalarL3
 
Processing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxProcessing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxpranjaldaimarysona
 
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
 
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
 
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
 
(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
 
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escortsranjana 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
 
Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024hassan khalil
 

Recently uploaded (20)

Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
 
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
 
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
 
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINEMANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
 
★ 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
 
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
 
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
 
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
 
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
 
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
 
Introduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxIntroduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptx
 
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSAPPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
 
Processing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxProcessing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.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 )
 
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
 
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
 
(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...
 
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
 
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
 
Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024
 

BIG MART SALES PREDICTION USING MACHINE LEARNING

  • 1. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 09 Issue: 12 | Dec 2022 www.irjet.net p-ISSN: 2395-0072 © 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 1341 BIG MART SALES PREDICTION USING MACHINE LEARNING 1Kasireddy Raghuvardhan Reddy, 2Kolipaka Rajesh, 3Bhukya Pavan Kalyan, 4 V. Prabhakar 4Assistant Professor, Department of Computer Science and Engineering, SNIST, Hyderabad-501301, India 1,2,3B. Tech Scholars, Department of Computer Science and Engineering, SNIST, Hyderabad-501301, India ---------------------------------------------------------------------***--------------------------------------------------------------------- Abstract: - Supermarkets and their franchises are increasing a lot in recent times. At this moment to increase their sales, they have to predict the sales of the items. Thereby they can protect themselves from losses and they can generate profits. So, this analysis will require a lot of time and effort.So,weproposedamachine learning model that will use the XGBoost Regressor to predict the sales of the items. Thereby marts can plan their recruitment strategy, perceive challenges early, motivate the sales team, predict revenue, aid future marketing plans, and helps in many more ways. I. INTRODUCTION At present, there are many supermarkets and there is high competition between them. If any mart wants to win the competition it has to make more sales than any other competitor. The mart can increase sales by knowing products/items which will generate more sales and those that will generate low sales. This analysis is tedious. So with the proposed system, the mart can predict the sales, thereby marts can take necessary steps. This is a user-friendly system. When the user submitted detailsofa particularitem, the system will predict sales generated by that item. Hence, this leads to winning in the competition and an increase in sales. II. LITERATURE SURVEY Earlier we are having different methods for predicting the sales such as: Expert’s Opinion Method: Here, marketing and sales professionals will make sales predictions. Analysis and sales forecasting are labor-intensive tasks. However, predictions can also be inaccurate for a variety of reasons, including a lack of enthusiasm for the task being performed and other problems. Survey of Buyer’s Expectations: In this case, the store will poll customers based on their preferences, enabling it to forecast which productswouldresultinthegreatestincrease in sales. The actual purchases could differ from the declared aims, though. Unfortunately, it caused incorrect sales predictions at the time. To overcome those drawbacks we proposed a model which was developed usingmachinelearning.Inthis,weused XGBoost Regressor for predicting the sales based on the customer purchases but not on the expert’s opinion and survey results. We would get accurate results compared to the previous system. III. DATASET A collection of data points that a computer may use to analyze and anticipate a situation as a whole. Internet information was gathered for the Kaggle.com website. The test data set used in this study comprises 8542 rows as well as 12 categories, which have beentrainedtodeliverthe most accurate prediction outcomes. Fig:1 Data set used IV. METHODOLOGY Fig: 2 Data flow Diagram
  • 2. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 09 Issue: 12 | Dec 2022 www.irjet.net p-ISSN: 2395-0072 © 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 1342 V. DATA PREPROCESSING 5.1 Filling Missing Values In data preprocessing, we will find and fill themissingvalues with either mean, mode, or median. Fig:3 Filling missing values 5.2 Removing Unwanted Attributes Fig 4: Removing Unwanted Attributes 5.3 Exploratory Data Analysis Exploratory data analysis is the crucial process of doing preliminary analyses of data in order to find patterns, identify anomalies, test hypotheses, and double-check assumptions with the use of summary statistics and graphical representations. Data Visualization By putting the data in a graphical framework,suchasgraphs, and visualization of thedata providesa betterunderstanding of what that implies. This makes it easier for us to interpret the data intuitively and to spot patterns, trends, and abnormalities in large datasets. Fig 5 : heatmap for data visualization 5.4 Data Cleaning Cleaning the dataset by making names of attributes from initial capital letters to small letters. Fig 6: cleaning the data 5.5 Label Encoding Label encoding is the process of transforming labels into a numeric form so that they may be read by machines. The operation of such labels can then be better determined by machine learning techniques. For the structured dataset in supervised learning, it is a crucial pre-processing step. Fig 7: Label Encoding 5.6 Splitting the training and testing data The training and testing sets for the dataset weregoingto be separated. Two separate datasets are not imported for train and testing in order to prevent the overfitting process. The same dataset is thus divided into train and test sets. The datasets utilized to train and test our model are referred to Those attributes which will not involveinthe prediction can be removed.
  • 3. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 09 Issue: 12 | Dec 2022 www.irjet.net p-ISSN: 2395-0072 © 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 1343 collectively as the training dataset and the testing dataset, respectively. Fig 8 : splitting training and testing data 5.7 Standardization By utilizing the mean and standard deviation as the starting point to obtain particular values, data values are rescaled to fit the distribution between 0 and 1. This is known as standardization. Fig 9: Standardization 5.8 Evaluation Metrics The assessment of the model is a vital stage in creating a successful machine-learning model. It is essential tocreatea model and get metrics suggestions from it as a consequence. It will happen and keep happening until we achieve high accuracy in line with the value achieved through metric improvements. Evaluation metrics are used to describe the output of one model. The ability of the assessment metrics to distinguish between various model outputs is animportantfeature. This assessment approach made use of the Root Mean Squared Error (RMSE)metric. R-squared is a statistical indicator of how well a regression model fits the data. R-square should be set to a value of 1. The fit of the model is improved by the r-square value being near 1. VI. MODEL BUILDING After data preprocessing, the datasetisnowreadytobe used to build a predictive model. Training data is provided to the algorithm to train it to forecast values. The model creates a target variable to forecast before receiving input from the testing data. The XGBoost Regressor is used to construct the prediction model. XGBOOST: Decision trees and gradient boosting are combinedinthe XG Boost method. The method's development was intended to maximize the efficiency of memory and processing resources. The ensemble idea serves as the foundation for the sequential "boosting" procedure. The accuracy rate is increased as a consequence, and a group of slow learners is added. At each instant t, the weights of the model variables are determined by the impact of the instant before. Outcomes that are correctly computed have a lower weight than results that are incorrectly computed, which have a greater weight. Internally, the XGBoost model implements stepwise ridge regression using this method, which automatically selects features and eliminates repeated regressions. Fig 10: Building the model VII.RESULT After testing the model with testing data, we will find the RMSE (Root Mean Square Error), r2_score for accuracy, and mean absolute error. Fig 11: Results VIII. CONCLUSION We are predicting the XG Boost Regressor's accuracy. Large markets benefit from our projections by improving their methods and tactics, which boosts their profitability. The expected outcomes will be highly helpful for the company's leaders to understand their sales and profitability. This will also inspire them to create moreBigmartStoresorbranches.
  • 4. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 09 Issue: 12 | Dec 2022 www.irjet.net p-ISSN: 2395-0072 © 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 1344 IX. REFERENCES [1] Ayesha Syed, Asha Jyothi Kalluri, Venkateswara Reddy Pocha, Venkata Arun Kumar Dasari, B.Ramasubbaiah (2020, FEB). “BIGMART SALES USING MACHINE LEARNING WITH DATA ANALYSIS”. In JES (Vol 11,Issue 2). [2] Aaditi Narkhede, Mitali Awari, Suvarna Gawali, Prof.Amrapal Mhaisgawali. “BigMart Sales Prediction Using Machine Learning Techniques” Naveenraj R and Vinayaga Sundharam R [3] “PREDICTION OF BIG MART SALES USING MACHINE LEARNING” in IRJMETS (Volume:03/Issue:09/September-2021) [4] Rohit Sav, Pratiksha Shinde, Saurabh Gaikwad “BIG MART SALES PREDICTION USING MACHINE LEARNING” [5] Predicitive Analysis for Big Mart Sales Using Machine LearningAlgorithm”inIJRASETVolume10 Issue VIII August 2022 [6] Nayana R, Chaithanya G, Meghana T, Narahari K S, Sushma M “Predictive Analysis for Big Mart Sales using Machine Learning Algorithms” in IJERT RTCSIT – 2022 (Volume 10 – Issue 12)