Baselight

Cycle Ride Dataset

RIDE DATA RIDE........

@kaggle.omkarpatil2401_cycle_ride_dataset

About this Dataset

Cycle Ride Dataset

This is my first case study. It includes doing data cleaning processes, analyzing the data of the users of the cycles, understanding the patterns, and working on them to provide better solutions

Tables

Ride Data Modified

@kaggle.omkarpatil2401_cycle_ride_dataset.ride_data_modified
  • 31.82 MB
  • 788189 rows
  • 16 columns
Loading...

CREATE TABLE ride_data_modified (
  "unnamed_0" BIGINT,
  "ride_id" VARCHAR,
  "started_at" TIMESTAMP,
  "ended_at" TIMESTAMP,
  "rideable_type" VARCHAR,
  "start_station_id" BIGINT,
  "start_station_name" VARCHAR,
  "end_station_id" BIGINT,
  "end_station_name" VARCHAR,
  "member_casual" VARCHAR,
  "date" TIMESTAMP,
  "day" BIGINT,
  "month" BIGINT,
  "year" BIGINT,
  "ride_length" BIGINT,
  "day_of_week" VARCHAR
);