Baselight

Cornell Car Rental Dataset

Dataset of 5,851 Rental Cars: Make, Model, Year, Fare, Location and Fuel Type

@kaggle.kushleshkumar_cornell_car_rental_dataset

Carrentaldata
@kaggle.kushleshkumar_cornell_car_rental_dataset.carrentaldata

  • 211.86 KB
  • 5851 rows
  • 15 columns
fueltype

FuelType

rating

Rating

rentertripstaken

RenterTripsTaken

reviewcount

ReviewCount

location_city

Location.city

location_country

Location.country

location_latitude

Location.latitude

location_longitude

Location.longitude

location_state

Location.state

owner_id

Owner.id

rate_daily

Rate.daily

vehicle_make

Vehicle.make

vehicle_model

Vehicle.model

vehicle_type

Vehicle.type

vehicle_year

Vehicle.year

ELECTRIC51312SeattleUS47.449107-122.308841WA12847615135TeslaModel Xsuv2019
ELECTRIC521TijerasUS35.11106-106.276551NM15621242190TeslaModel Xsuv2018
HYBRID4.922824AlbuquerqueUS35.127163-106.566681NM1019925635ToyotaPriuscar2012
GASOLINE52120AlbuquerqueUS35.149726-106.711425NM936549675FordMustangcar2018
GASOLINE531AlbuquerqueUS35.208659-106.601008NM355356547ChryslerSebringcar2010
GASOLINE51312AlbuquerqueUS35.068834-106.576111NM781574758Mercedes-BenzGL-Classsuv2012
GASOLINE4.421312AlbuquerqueUS35.045552-106.633815NM311201642GMCYukon XLsuv2005
GASOLINE4.91210AlbuquerqueUS35.186542-106.686481NM9536762117FordExpeditionsuv2018
GASOLINE511AlbuquerqueUS35.061213-106.629406NM14893743102FordFocus RScar2016
GASOLINE4.762217AlbuquerqueUS35.115363-106.556911NM1138913649FordEcoSportsuv2018

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
);

Share link

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