Car Price Prediction Using Machine Learning
Car Price Prediction Using Machine Learning
Prediction using
Machine Learning
I SHANIA JONE
11NT22CS186-T
Table of Contents
• Introduction to Artificial Intelligence
• Abstract
• Problem Statement
• Results
2023
CAR PRICE PREDICTION 2
Introduction to Artificial Intelligence
Artificial Intelligence (AI) refers to the development and deployment of computer
systems or machines that can perform tasks that typically require human
intelligence. It encompasses a broad range of techniques and approaches aimed at
enabling machines to learn, reason, perceive, and make decisions autonomously.
AI systems are designed to analyze and interpret large amounts of data, recognize
patterns, and extract meaningful insights to solve complex problems. These
systems can adapt and improve their performance over time through a process
known as machine learning. They can also simulate human-like behaviors, such as
natural language processing, speech recognition, and computer vision.
Introduction to Machine Learning
Machine Learning (ML) is a subset of artificial intelligence that focuses on developing
algorithms and models that enable computers to learn and make predictions or decisions
without being explicitly programmed. It is based on the idea that machines can learn
from data, identify patterns, and make informed decisions or predictions.
The head() returns the first n rows of a dataframe(default value is 5). The shape() returns number of
rows and columns of a dataframe .As of the above line of code, there are 4340 rows and 8 columns.
Data Preprocessing-
Data Cleaning-Data cleaning, also known as data cleansing or data preprocessing, refers
to the process of identifying and correcting or removing errors, inconsistencies, and
inaccuracies in datasets.
ScatterPlot-A scatter plot is a type of data visualization that displays the relationship
between two numerical features.
Countplot- A countplot is a type of data visualization that displays the count of
occurrences of each category in a categorical variable. It provides a visual representation
of the frequency or distribution of categorical data.
Steps include:
X and Y have been split into x_train,x_test,y_train and y_test for training and testing data.
Decision Tree Regressor- A decision tree regressor is a machine learning algorithm that
is used for regression tasks. It builds a decision tree model by recursively partitioning
the feature space based on the input variables to predict continuous target variables..
Thank you