Electric Car Performance And Battery Dataset
Brand and Model Overview with company name, model, and segment details
@kaggle.afnansaifafnan_electric_car_performance_and_battery_dataset
Brand and Model Overview with company name, model, and segment details
@kaggle.afnansaifafnan_electric_car_performance_and_battery_dataset
This dataset provides detailed specifications of electric vehicles (EVs) from various brands and models. It includes important informations such as battery capacity, range, efficiency, top speed, and acceleration. Along with performance details, it also explains vehicle dimensions, drivetrain type, interior features, and cargo capacity. This dataset is valuable for analyzing EV performance, comparing models across brands, and visualizing the growth of electric mobility in the automotive industry.
CREATE TABLE electric_vehicles_spec_2025 (
"brand" VARCHAR,
"model" VARCHAR,
"top_speed_kmh" BIGINT,
"battery_capacity_kwh" DOUBLE,
"battery_type" VARCHAR,
"number_of_cells" DOUBLE,
"torque_nm" DOUBLE,
"efficiency_wh_per_km" BIGINT,
"range_km" BIGINT,
"acceleration_0_100_s" DOUBLE,
"fast_charging_power_kw_dc" DOUBLE,
"fast_charge_port" VARCHAR,
"towing_capacity_kg" DOUBLE,
"cargo_volume_l" VARCHAR,
"seats" BIGINT,
"drivetrain" VARCHAR,
"segment" VARCHAR,
"length_mm" BIGINT,
"width_mm" BIGINT,
"height_mm" BIGINT,
"car_body_type" VARCHAR,
"source_url" VARCHAR
);Anyone who has the link will be able to view this.