Divvy 2019
The full year for Cyclistic
@kaggle.moazmohamedhassan_divvy_2019
The full year for Cyclistic
@kaggle.moazmohamedhassan_divvy_2019
This dataset is based on a bike renting company called Cyclistic which takes place in Chicago , their director of marketing believes the company’s future success depends on maximizing the number of annual memberships . Therefore, Our team wants to understand how casual riders and annual members use Cyclistic bikes differently. From these insights, Our team will design a new marketing strategy to convert casual riders into annual members
the data after further inspections shows a bit of unexplained data where some rides too months which didn't make sense so we added a criteria of 120 mins maximum rides so we get a real understanding of the data , our goal is to clean , organize , filter & sort so we can make observations on the data , i acquired the data from : https://ride.divvybikes.com/system-data ,which is an open source data with the license agreement :https://ride.divvybikes.com/data-license-agreement , this data set takes place in 2019 whole year .
can't disregard the help of the people around me makes it much easier to have other insights regarding the points of view and other ways to tackle the problem on hand .
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
);
CREATE TABLE divvy_trips_2019_q2 (
"n_01_rental_details_rental_id" BIGINT -- 01 - Rental Details Rental ID,
"n_01_rental_details_local_start_time" TIMESTAMP -- 01 - Rental Details Local Start Time,
"n_01_rental_details_local_end_time" TIMESTAMP -- 01 - Rental Details Local End Time,
"n_01_rental_details_bike_id" BIGINT -- 01 - Rental Details Bike ID,
"n_01_rental_details_duration_in_seconds_uncapped" DOUBLE -- 01 - Rental Details Duration In Seconds Uncapped,
"n_03_rental_start_station_id" BIGINT -- 03 - Rental Start Station ID,
"n_03_rental_start_station_name" VARCHAR -- 03 - Rental Start Station Name,
"n_02_rental_end_station_id" BIGINT -- 02 - Rental End Station ID,
"n_02_rental_end_station_name" VARCHAR -- 02 - Rental End Station Name,
"user_type" VARCHAR,
"member_gender" VARCHAR,
"n_05_member_details_member_birthday_year" DOUBLE -- 05 - Member Details Member Birthday Year
);
CREATE TABLE divvy_trips_2019_q3 (
"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
);
CREATE TABLE divvy_trips_2019_q4 (
"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.