Fuel Consumption 2000-2022
This data set shows the fuel consumption between 2000 and 2022.
@kaggle.ahmettyilmazz_fuel_consumption
This data set shows the fuel consumption between 2000 and 2022.
@kaggle.ahmettyilmazz_fuel_consumption
Datasets provide model-specific fuel consumption ratings and estimated carbon dioxide emissions for new light-duty vehicles for retail sale in Canada.
To help you compare vehicles from different model years, the fuel consumption ratings for 2000 to 2022 vehicles have been adjusted to reflect the improved testing that is more representative of everyday driving. Note that these are approximate values that were generated from the original ratings, not from vehicle testing.
Original data to Open Canada Data
CREATE TABLE fuel_consumption_2000_2022 (
  "year" BIGINT,
  "make" VARCHAR,
  "model" VARCHAR,
  "vehicle_class" VARCHAR,
  "engine_size" DOUBLE,
  "cylinders" BIGINT,
  "transmission" VARCHAR,
  "fuel" VARCHAR,
  "fuel_consumption" DOUBLE,
  "hwy_l_100_km" DOUBLE  -- HWY (L/100 Km),
  "comb_l_100_km" DOUBLE  -- COMB (L/100 Km),
  "comb_mpg" BIGINT  -- COMB (mpg),
  "emissions" BIGINT
);Anyone who has the link will be able to view this.