Divvy Trips 2019 Q1 Dataset (Raw)
Raw Trip Data from Divvy Bike-Share (Jan–Mar 2019)
@kaggle.hamzajawad123_divvy_trips_2019_q1_dataset
Raw Trip Data from Divvy Bike-Share (Jan–Mar 2019)
@kaggle.hamzajawad123_divvy_trips_2019_q1_dataset
This dataset contains the raw Divvy bike-share trip records for the first quarter of 2019 (January–March).
It was originally published by Divvy (Cyclistic) system data, operated by Lyft Bikes and Scooters, LLC.
This file is provided in its original raw form. It may contain inconsistencies, missing values, or schema differences, making it suitable for practicing data cleaning, preprocessing, and exploratory analysis.
CREATE TABLE divvy_trips_2019_q1 (
"trip_id" BIGINT,
"start_time" TIMESTAMP,
"end_time" TIMESTAMP,
"bikeid" BIGINT,
"tripduration" DOUBLE,
"from_station_id" BIGINT,
"from_station_name" VARCHAR,
"to_station_id" BIGINT,
"to_station_name" VARCHAR,
"usertype" VARCHAR,
"gender" VARCHAR,
"birthyear" DOUBLE
);
Anyone who has the link will be able to view this.