Baselight

Car Sales

Cleaned dataset from 2014 car website

@kaggle.prestongrinstead_car_sales

Loading...
Loading...

About this Dataset

Car Sales

This is a data set I extracted for a car website I managed about 10-years ago. Some of the packages have changed as the python version was different, but I fine tuned it to run with Python 3.9xx and updated the url's. The file titled 'car_sales_data_original' can be accessed on the right hand side, and consists the uncleaned raw data that was extracted. The other file is tailored to what I needed, which were sales trends over a 20-year period (1993-2013) and it is cleaned. The 'original' file contains all years there is data for (about 16,000 items) as I re-ran the scraper before posting. Enjoy and have fun!

Tables

Car Sales Data Original

@kaggle.prestongrinstead_car_sales.car_sales_data_original
  • 51.01 KB
  • 4043 rows
  • 4 columns
Loading...

CREATE TABLE car_sales_data_original (
  "make" VARCHAR,
  "model" VARCHAR,
  "year" VARCHAR,
  "sales" VARCHAR
);

Car Sales Data

@kaggle.prestongrinstead_car_sales.car_sales_data
  • 11.35 KB
  • 827 rows
  • 5 columns
Loading...

CREATE TABLE car_sales_data (
  "make" VARCHAR,
  "model" VARCHAR,
  "year" BIGINT,
  "sales" BIGINT,
  "predictions" VARCHAR
);

Share link

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