Used Car Prices from the Automobile dataset in order to predict the most suitable Car Price.
In this project I'm trying to analyze and visualize the Used Car Prices from the dataset available at https://archive.ics.uci.edu/ml/machine-learning-databases/autos/imports-85.data in order to predict the most probable car price
It is divided into four parts:
-
Data Wrangling
- Pre processing data in python
- Dealing missing values
- Data formatting
- Data normalization
- Binning
-
Exploratory Data Analysis
- Descriptive statistics
- Groupby
- Analysis of variance
- Correlation
- Correlation stats
-
Model Development
- Simple Linear Regression
- Multiple Linear Regression
-
Model Review and Evaluation
- Regression Plots
- Distribution Plots
- Anaconda Distribution
- Jupyter Notebook
- Numpy
- Pandas
- Matplotlib
- Seaborn
import pandas as pd
import numpy as np
import math
import matplotlib.pyplot as plt
import seaborn as sns
-
Pivot table categorizing wheel drive and body style with prices.
-
HeatMap with wheel drive in y axis and body style in x axis.
The distribution plot of Linear Regression and Multiple Regression technique shows how the model predicts the prices of automobiles based on "horsepower", "curb-weight", "engine-size" and "highway-mpg"
Comparing these three models, we conclude that the MLR model is the best model to be able to predict price from our dataset. This result makes sense, since we have 27 variables in total, and we know that more than one of those variables are potential predictors of the final car price.