Baselight

EVs - One Electric Vehicle Dataset - Smaller

Compare and analyze today's electric cars!

@kaggle.geoffnel_evs_one_electric_vehicle_dataset

Loading...
Loading...

About this Dataset

EVs - One Electric Vehicle Dataset - Smaller

CONTEXT:
This is a dataset of electric vehicles.

One of the more popular data science datasets is the mtcars dataset. It is known for its simplicity when running analysis and visualizations.

When looking for simple datasets on EVs, there don't seem to be any. Also, given the growth in this market, this is something many would be curious about. Hence, the reason for creating this dataset.

For more information, please visit the data source below.

TASKS:
Some basic tasks would include

  1. Which car has the fastest 0-100 acceleration?
  2. Which has the highest efficiency?
  3. Does a difference in power train effect the range, top speed, efficiency?
  4. Which manufacturer has the most number of vehicles?
  5. How does price relate to rapid charging?

CONTENT:
I've included two datasets below:

  1. 'ElectricCarData_Clean.csv'
    -- original pulled data.

  2. 'ElectricCarData_Norm.csv'
    -- units removed from each of the rows
    -- rapid charge has a binary yes/no value

The point of both is to have users practice some data cleaning.

CREDITS:
There are two credits and sourcing that needs to be mentioned:

  1. Datasource: ev-database.org/
    2.Banner image: freepik - author - 'macrovector'

UPDATES:
There will be future updates when we can attain additional data.

Tables

Electriccardata Clean

@kaggle.geoffnel_evs_one_electric_vehicle_dataset.electriccardata_clean
  • 13.16 KB
  • 103 rows
  • 14 columns
Loading...

CREATE TABLE electriccardata_clean (
  "brand" VARCHAR,
  "model" VARCHAR,
  "accelsec" DOUBLE,
  "topspeed_kmh" BIGINT,
  "range_km" BIGINT,
  "efficiency_whkm" BIGINT,
  "fastcharge_kmh" VARCHAR,
  "rapidcharge" VARCHAR,
  "powertrain" VARCHAR,
  "plugtype" VARCHAR,
  "bodystyle" VARCHAR,
  "segment" VARCHAR,
  "seats" BIGINT,
  "priceeuro" BIGINT
);

Electriccardata Norm

@kaggle.geoffnel_evs_one_electric_vehicle_dataset.electriccardata_norm
  • 13.14 KB
  • 103 rows
  • 14 columns
Loading...

CREATE TABLE electriccardata_norm (
  "brand" VARCHAR,
  "model" VARCHAR,
  "accel" VARCHAR,
  "topspeed" VARCHAR,
  "range" VARCHAR,
  "efficiency" VARCHAR,
  "fastcharge" VARCHAR,
  "rapidcharge" VARCHAR,
  "powertrain" VARCHAR,
  "plugtype" VARCHAR,
  "bodystyle" VARCHAR,
  "segment" VARCHAR,
  "seats" BIGINT,
  "priceeuro" BIGINT
);

Share link

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