The Cyclistic company offers a service were you can rent a bike for a certain amount of time, one use, one day and anuall membership.
The task is to find out why casual riders( one use and one day) would like to get the anual membership?.
Once identified, the next step is to find out how the company can help casual riders to get the anual membership?.
Stakeholders
Cyclistic executive team is the main stakeholders.
The datasource is from Cyclistic company, the data is conformed of 5824 bikes with 692 stations.
The data is organized in a csv file and you can sort the data by the start date of the ride.
Data dictionary:
ride_id -> Unique ID of the ride.
rideable_type -> Type of the rideable.
started_at -> Start time of the ride.
ended_at -> End time of the ride.
start_station_name -> Name of the start station.
start_station_id -> Unique ID of the start station.
end_station_name -> Name of the end station.
end_station_id -> Unique ID of the end station.
start_lat -> Start ride latitude.
start_lng -> Start ride longitude.
end_lat -> End ride latitude.
end_lng-> End ride longitude.
member_casual-> Type of member.
The clean process
- Updated data types of the data.
- There are many values without starting and end position and id, so i tried to find the missing values by looking for the closest place and using that instead, if there is remaining places i removed them.
- The missing lat and long for end where dropped.
Feature enginering
- Got the time between trips
- Got the distance between trips
- Got day period
Analysis Steps
- Look if theres any diference between the ride times and subscription type
- Look if theres any diference between the ride distance and subscription type
- Look if theres any diference between the ride day period and subscription type
- The anual membership is the best option for clasic bike riders.
- Casual riders are more likely to use a bike on weekends than on weekdays.
- Electric bike has more members on weekdays than on weekends, maybe this is a place to start converting the casual riders to anual members.
- Distances and time of rides don't have a clear correlation with the subscription type, just casual riders are slightly more likely to have longer rides.
- Electric bike is increasing members over the weeks.
- Docked bikes just have casual riders.
- Electric bikes has an increasing trend, and weekend riders can be a good target to convert to anual members.
- Clasic bikes are the most popular, and the casual riders are the most likely to convert to anual members, even on weekends.
- Casual members prefer electric bikes, and the casual riders are the most likely to convert to anual members on weekdays.