Ieee Research Paper
Ieee Research Paper
Proposed Approach for finding the best suitable model and the testing data
will be used to find the difference from the experimental
Predictive analytics is a branch of advanced analytics that
predictions. After testing each model using the training
makes predictions about future outcomes using historical
data, we obtained the R2 Score (Accuracy) and MAE
data combined with statistical modelling, data mining
(Mean accuracy error) given below in the tabular form.
techniques and machine learning. Companies employ
predictive analytics to find patterns in this data to identify MODEL ACCURACY MAE
risks and opportunities. Predictive analytics is often Linear Regression 80.7% 0.21
associated with big data and data science. Our Project Ridge Regression 81.2% 0.20
“Wise Price” uses predictive analysis to analyse and KNN 80.2% 0.19
predict the prices of electronic gadgets using its Random Forest 88.7% 0.15
specifications. SVM 80.8% 0.20
Fig 2. Table showing the accuracy and Error margin generated by
A. Theoretical model, analysis, and solution each predic on model.
Predictive analysis involves series of steps which need to As per the table given in Fig 2, highest accuracy was
be followed. The first step was collection of data. The generated by Random Forest model. Therefore, Random
data which we collected included the name, specifications Forest model was chosen as the Prediction model for our
(RAM, ROM, SSD/HDD, Screen Resolution, Type, PPI) project.
and price of these laptops. The next step involved
preprocessing of data. Raw data consists of blank Random Forest is a popular machine learning algorithm
columns and inconsistencies. Thus, series of steps such as that belongs to the supervised learning technique. It can
data cleaning and data transformation was applied for be used for both Classification and Regression problems
preprocessing. Further we performed exploratory data in ML. It is based on the concept of ensemble
analysis (EDA) to visualize and summarize the data to learning, which is a process of combining multiple
gain insights into its characteristics. classifiers to solve a complex problem and to improve the
performance of the model. As the name
suggests, "Random Forest is a classifier that contains a
number of decision trees on various subsets of the given
dataset and takes the average to improve the predictive
accuracy of that dataset." Instead of relying on one
decision tree, the random forest takes the prediction from
each tree and based on the majority votes of predictions,
and it predicts the final output.
Fig 1. EDA used for plo ng a bar graph to find which companies
produce budget friendly electronics.