The central goal of this analysis is to answer a key question for the Cyclistic marketing team: How do annual members and casual riders use Cyclistic bikes differently?
The director of marketing, Lily Moreno, believes that future success depends on maximizing annual memberships, as finance analysts have determined members are more profitable than casual riders. By understanding the behavioral differences between these two user groups, the marketing team can design a targeted strategy to convert casual riders into paying annual members. The final recommendations will be presented to the Cyclistic executive team for approval.
To answer the business question, we used historical trip data for Q1 2019 and Q1 2020, as recommended for use in RStudio. The following steps were taken to prepare the raw data for analysis.
The data was initially spread across two separate files with inconsistent column naming and data formats.
Divvy_Trips_2019_Q1.csv and
Divvy_Trips_2020_Q1.csv were loaded into R as separate data
frames.trip_id to ride_id,
start_time to started_at, and
end_time to ended_at).trip_19_new and trip_20) were
merged into a single comprehensive data frame named
all_q1_trips to allow for unified analysis.Two new columns were created to facilitate the analysis:
tripduration: Calculated the duration
of each ride in minutes by subtracting the started_at
timestamp from the ended_at timestamp. This is essential
for comparing ride lengths.day_of_week: Extracted the day of the
week from the started_at timestamp to analyze usage
patterns across the week.This documented cleaning process ensures the data is accurate, consistent, and ready for analysis.
The data tells a clear story: casual riders and members use the Cyclistic service in fundamentally different ways. Members are consistent and efficient, while casual riders are situational and take much longer trips, especially on Thursdays and weekends. This insight directly informs a targeted marketing strategy.
Based on the insight that casual rider engagement peaked on Thursdays, the marketing team decided to spend heavily on a pilot campaign engaging this audience. The results were outstanding: the team achieved 60% more subscriber conversions from this targeted Thursday audience compared with the overall casual customers engaged during all other days of the week.
Based on the analysis and the successful pilot, here are the top three recommendations to convert casual riders into members:
By implementing these data-driven strategies, Cyclistic can effectively convert high-value casual riders into profitable annual members, securing future growth for the company.