Cornell Car Rental Dataset
Dataset of 5,851 Rental Cars: Make, Model, Year, Fare, Location and Fuel Type
@kaggle.kushleshkumar_cornell_car_rental_dataset
Dataset of 5,851 Rental Cars: Make, Model, Year, Fare, Location and Fuel Type
@kaggle.kushleshkumar_cornell_car_rental_dataset
As a Product Manager for a startup I needed to make certain data driven decisions which involved the car rental industry. So I scraped the web and built this dataset myself. I thought to make is public as a way to give back to the community.
Here is a Medium Post by me describing some insights from this dataset and releasing the dataset to public:
https://link.medium.com/Yduf7ceYC8
The content is acquired during the time of July 2020 for major US cities.
The scraping scripts I used were built off of certain StackOverflow responses.
Some of the answers this dataset can help unwind is:
CREATE TABLE carrentaldata (
"fueltype" VARCHAR,
"rating" DOUBLE,
"rentertripstaken" BIGINT,
"reviewcount" BIGINT,
"location_city" VARCHAR,
"location_country" VARCHAR,
"location_latitude" DOUBLE,
"location_longitude" DOUBLE,
"location_state" VARCHAR,
"owner_id" BIGINT,
"rate_daily" BIGINT,
"vehicle_make" VARCHAR,
"vehicle_model" VARCHAR,
"vehicle_type" VARCHAR,
"vehicle_year" BIGINT
);CREATE TABLE carrentaldatav1 (
"fueltype" VARCHAR,
"rating" DOUBLE,
"rentertripstaken" DOUBLE,
"reviewcount" DOUBLE,
"location_city" VARCHAR,
"location_country" VARCHAR,
"location_latitude" DOUBLE,
"location_longitude" DOUBLE,
"location_state" VARCHAR,
"owner_id" DOUBLE,
"rate_daily" DOUBLE,
"vehicle_make" VARCHAR,
"vehicle_model" VARCHAR,
"vehicle_type" VARCHAR,
"vehicle_year" DOUBLE,
"airportcity" VARCHAR
);Anyone who has the link will be able to view this.