Baselight

Car Information Dataset

automobiles data for visualization, analysis and regression tasks

@kaggle.tawfikelmetwally_automobile_dataset

About this Dataset

Car Information Dataset

About Dataset

if you found it useful, Make an upvote 🔼.

you are given dataset which contains information about automobiles.
The dataset contains 399 rows of 9 features

DATA OVERVIEW:

The dataset consists of the following columns:

  • Name: Unique identifier for each automobile.
  • MPG: Fuel efficiency measured in miles per gallon.
  • Cylinders: Number of cylinders in the engine.
  • Displacement: Engine displacement, indicating its size or capacity.
  • Horsepower: Power output of the engine.
  • Weight: Weight of the automobile.
  • Acceleration: Capability to increase speed, measured in seconds.
  • Model Year: Year of manufacture for the automobile model.
  • Origin: Country or region of origin for each automobile.

Tables

Automobile

@kaggle.tawfikelmetwally_automobile_dataset.automobile
  • 15.71 KB
  • 398 rows
  • 9 columns
Loading...

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