Baselight

Auto-mpg Dataset

Mileage per gallon performances of various cars

@kaggle.uciml_autompg_dataset

Auto Mpg
@kaggle.uciml_autompg_dataset.auto_mpg

  • 15.72 KB
  • 398 rows
  • 9 columns
mpg

Mpg

cylinders

Cylinders

displacement

Displacement

horsepower

Horsepower

weight

Weight

acceleration

Acceleration

model_year

Model Year

origin

Origin

car_name

Car Name

188307130350412701chevrolet chevelle malibu
158350165369311.5701buick skylark 320
188318150343611701plymouth satellite
168304150343312701amc rebel sst
178302140344910.5701ford torino
158429198434110701ford galaxie 500
14845422043549701chevrolet impala
14844021543128.5701plymouth fury iii
148455225442510701pontiac catalina
15839019038508.5701amc ambassador dpl

CREATE TABLE auto_mpg (
  "mpg" DOUBLE,
  "cylinders" BIGINT,
  "displacement" DOUBLE,
  "horsepower" VARCHAR,
  "weight" BIGINT,
  "acceleration" DOUBLE,
  "model_year" BIGINT,
  "origin" BIGINT,
  "car_name" VARCHAR
);

Share link

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