Baselight

Car Price Dataset

Comprehensive car price dataset with detailed influencing factors.

@kaggle.saurabhbadole_car_price_dataset

Carprice Assignment
@kaggle.saurabhbadole_car_price_dataset.carprice_assignment

  • 26.73 KB
  • 205 rows
  • 26 columns
car_id

Car ID

symboling

Symboling

carname

CarName

fueltype

Fueltype

aspiration

Aspiration

doornumber

Doornumber

carbody

Carbody

drivewheel

Drivewheel

enginelocation

Enginelocation

wheelbase

Wheelbase

carlength

Carlength

carwidth

Carwidth

carheight

Carheight

curbweight

Curbweight

enginetype

Enginetype

cylindernumber

Cylindernumber

enginesize

Enginesize

fuelsystem

Fuelsystem

boreratio

Boreratio

stroke

Stroke

compressionratio

Compressionratio

horsepower

Horsepower

peakrpm

Peakrpm

citympg

Citympg

highwaympg

Highwaympg

price

Price

13alfa-romero giuliagasstdtwoconvertiblerwdfront88.6168.864.148.82548dohcfour130mpfi3.472.6891115000212713495
23alfa-romero stelviogasstdtwoconvertiblerwdfront88.6168.864.148.82548dohcfour130mpfi3.472.6891115000212716500
31alfa-romero Quadrifogliogasstdtwohatchbackrwdfront94.5171.265.552.42823ohcvsix152mpfi2.683.4791545000192616500
42audi 100 lsgasstdfoursedanfwdfront99.8176.666.254.32337ohcfour109mpfi3.193.4101025500243013950
52audi 100lsgasstdfoursedan4wdfront99.4176.666.454.32824ohcfive136mpfi3.193.481155500182217450
62audi foxgasstdtwosedanfwdfront99.8177.366.353.12507ohcfive136mpfi3.193.48.51105500192515250
71audi 100lsgasstdfoursedanfwdfront105.8192.771.455.72844ohcfive136mpfi3.193.48.51105500192517710
81audi 5000gasstdfourwagonfwdfront105.8192.771.455.72954ohcfive136mpfi3.193.48.51105500192518920
91audi 4000gasturbofoursedanfwdfront105.8192.771.455.93086ohcfive131mpfi3.133.48.31405500172023875
10audi 5000s (diesel)gasturbotwohatchback4wdfront99.5178.267.9523053ohcfive131mpfi3.133.471605500162217859.167

CREATE TABLE carprice_assignment (
  "car_id" BIGINT,
  "symboling" BIGINT,
  "carname" VARCHAR,
  "fueltype" VARCHAR,
  "aspiration" VARCHAR,
  "doornumber" VARCHAR,
  "carbody" VARCHAR,
  "drivewheel" VARCHAR,
  "enginelocation" VARCHAR,
  "wheelbase" DOUBLE,
  "carlength" DOUBLE,
  "carwidth" DOUBLE,
  "carheight" DOUBLE,
  "curbweight" BIGINT,
  "enginetype" VARCHAR,
  "cylindernumber" VARCHAR,
  "enginesize" BIGINT,
  "fuelsystem" VARCHAR,
  "boreratio" DOUBLE,
  "stroke" DOUBLE,
  "compressionratio" DOUBLE,
  "horsepower" BIGINT,
  "peakrpm" BIGINT,
  "citympg" BIGINT,
  "highwaympg" BIGINT,
  "price" DOUBLE
);

Share link

Anyone who has the link will be able to view this.