Skip to content

In this project, information of 100,000 vehicles for sale in England was examined. A price estimation has been made for a new vehicle to be offered for sale.

Notifications You must be signed in to change notification settings

OguzCelikel/carPriceAnalysis

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 

Repository files navigation

carPriceAnalysis

In this project, information of 100,000 vehicles for sale in England was examined. A price estimation has been made for a new vehicle to be offered for sale.

Downloading and reading the data I will use

# Mercedes data frame from merc.csv
df = pd.read_csv("/kaggle/input/used-car-dataset-ford-and-mercedes/merc.csv")
df.head()

Missing Values

I don't have missing values. If It were...

# checks if it has a null cell
df.isnull().sum()

# fill missing values with mean column values
dataset.fillna(dataset.mean(), inplace=True)

# count the number of NaN values in each column
print(dataset.isnull().sum())

Categorical Variables

from sklearn.preprocessing import OneHotEncoder
from sklearn import preprocessing

# Encode target labels with value between 0 and n_classes-1.
label_encoder = preprocessing.LabelEncoder()

df['model']= label_encoder.fit_transform(df['model']) 
df['transmission']= label_encoder.fit_transform(df['transmission']) 
df['fuelType']= label_encoder.fit_transform(df['fuelType']) 

Error Metric

I used MSE -> measures how far the data are from the model’s predicted values.

model.compile(optimizer = "adam", loss = "mse")

train-validation-test

model.fit(x = x_train, y = y_train, validation_data = (x_test, y_test), batch_size = 250, epochs = 300)

At the end of the project, I found my result with about 13% error.

When the features of the car are given, the price of the car will come out.

About

In this project, information of 100,000 vehicles for sale in England was examined. A price estimation has been made for a new vehicle to be offered for sale.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published