Baselight

Automobiles | Cars Project Dataset

Automobiles data for visualization, analysis and regression tasks

@kaggle.whenamancodes_automobiles_project_dataset

Automobile
@kaggle.whenamancodes_automobiles_project_dataset.automobile

  • 15.71 KB
  • 398 rows
  • 9 columns
name

Name

mpg

Mpg

cylinders

Cylinders

displacement

Displacement

horsepower

Horsepower

weight

Weight

acceleration

Acceleration

model_year

Model Year

origin

Origin

chevrolet chevelle malibu18830713035041270usa
buick skylark 320158350165369311.570usa
plymouth satellite18831815034361170usa
amc rebel sst16830415034331270usa
ford torino178302140344910.570usa
ford galaxie 50015842919843411070usa
chevrolet impala1484542204354970usa
plymouth fury iii14844021543128.570usa
pontiac catalina14845522544251070usa
amc ambassador dpl15839019038508.570usa

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

Share link

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