Electric Vehicle Population By Country (2024)
The full monthly count of electric vehicles by country
@kaggle.sahirmaharajj_electric_vehicle_population_size_2024
The full monthly count of electric vehicles by country
@kaggle.sahirmaharajj_electric_vehicle_population_size_2024
This dataset shows the number of vehicles that were registered by Washington State Department of Licensing (DOL) each month. The data is separated by county for passenger vehicles and trucks.
CREATE TABLE electric_vehicle_population_size_history_by_county (
"date" VARCHAR,
"county" VARCHAR,
"state" VARCHAR,
"vehicle_primary_use" VARCHAR,
"battery_electric_vehicles_bevs" BIGINT -- Battery Electric Vehicles (BEVs),
"plug_in_hybrid_electric_vehicles_phevs" BIGINT -- Plug-In Hybrid Electric Vehicles (PHEVs),
"electric_vehicle_ev_total" BIGINT -- Electric Vehicle (EV) Total,
"non_electric_vehicle_total" BIGINT,
"total_vehicles" BIGINT,
"percent_electric_vehicles" DOUBLE
);Anyone who has the link will be able to view this.