Baselight

Divvy Trips 2019 Q1 Dataset (Raw)

Raw Trip Data from Divvy Bike-Share (Jan–Mar 2019)

@kaggle.hamzajawad123_divvy_trips_2019_q1_dataset

Loading...
Loading...

About this Dataset

Divvy Trips 2019 Q1 Dataset (Raw)

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.

Key Features

  • Time Period: Q1 2019 (January–March)
  • File Type: Raw CSV (no cleaning or preprocessing applied)
  • Includes Columns Such As:
    • Ride ID and bike type
    • Trip start and end timestamps
    • Start and end station details
    • Rider type (casual or member)
    • Trip duration

Notes

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.

Tables

Divvy Trips 2019 Q1

@kaggle.hamzajawad123_divvy_trips_2019_q1_dataset.divvy_trips_2019_q1
  • 12.1 MB
  • 365,069 rows
  • 12 columns
Loading...
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
);

Share link

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