Car Price Prediction Challenge
A dataset to practice regression by predicting the prices of different cars.
@kaggle.deepcontractor_car_price_prediction_challenge
A dataset to practice regression by predicting the prices of different cars.
@kaggle.deepcontractor_car_price_prediction_challenge
Your notebooks must contain the following steps:
CSV file - 19237 rows x 18 columns (Includes Price Columns as Target)
ID
Price: price of the care(Target Column)
Levy
Manufacturer
Model
Prod. year
Category
Leather interior
Fuel type
Engine volume
Mileage
Cylinders
Gear box type
Drive wheels
Doors
Wheel
Color
Airbags
Confused or have any doubts in the data column values? Check the dataset discussion tab!
CREATE TABLE car_price_prediction (
"id" BIGINT,
"price" BIGINT,
"levy" VARCHAR,
"manufacturer" VARCHAR,
"model" VARCHAR,
"prod_year" BIGINT -- Prod. Year,
"category" VARCHAR,
"leather_interior" VARCHAR,
"fuel_type" VARCHAR,
"engine_volume" VARCHAR,
"mileage" VARCHAR,
"cylinders" DOUBLE,
"gear_box_type" VARCHAR,
"drive_wheels" VARCHAR,
"doors" VARCHAR,
"wheel" VARCHAR,
"color" VARCHAR,
"airbags" BIGINT
);Anyone who has the link will be able to view this.