Automobiles | Cars Project Dataset
Automobiles data for visualization, analysis and regression tasks
@kaggle.whenamancodes_automobiles_project_dataset
Automobiles data for visualization, analysis and regression tasks
@kaggle.whenamancodes_automobiles_project_dataset
The car information dataset provides comprehensive details about various vehicles. It includes information such as make, model, year, engine specifications, fuel efficiency, dimensions, safety features, and more. This dataset serves as a valuable resource for car enthusiasts, researchers, and businesses in the automotive industry.
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.
CREATE TABLE automobile (
"name" VARCHAR,
"mpg" DOUBLE,
"cylinders" BIGINT,
"displacement" DOUBLE,
"horsepower" DOUBLE,
"weight" BIGINT,
"acceleration" DOUBLE,
"model_year" BIGINT,
"origin" VARCHAR
);
Anyone who has the link will be able to view this.