Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hyoaru/google-data-analytics-capstone-case-study
A case study on a fictional bike share company based on Chicago. Aiming to gain valuable insights into customer behavior and usage patterns.
https://github.com/hyoaru/google-data-analytics-capstone-case-study
case-study data-analytics data-visualizations python r
Last synced: 28 days ago
JSON representation
A case study on a fictional bike share company based on Chicago. Aiming to gain valuable insights into customer behavior and usage patterns.
- Host: GitHub
- URL: https://github.com/hyoaru/google-data-analytics-capstone-case-study
- Owner: hyoaru
- Created: 2023-07-30T09:11:15.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2023-07-30T09:16:44.000Z (over 1 year ago)
- Last Synced: 2023-07-30T10:24:25.480Z (over 1 year ago)
- Topics: case-study, data-analytics, data-visualizations, python, r
- Language: HTML
- Homepage:
- Size: 5.08 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Google data analytics capstone case study: How does a bike-share navigate speedy success?
As a junior data analyst working in the marketing analyst team of Cyclistic, a bike-share company in Chicago, the director of marketing believes that the company's future success depends on maximizing the number of annual memberships and with that being the case, our team was tasked 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.
However, the executives must first approve of our recommendations. In which, must be backed up with compelling data insights and professional data visualizations.
* Case study: [capstone-case-study.html](https://htmlpreview.github.io/?https://github.com/hyoaru/google-data-analytics-capstone-case-study/blob/master/capstone-case-study.html)
* Case study data preparation in python: [capstone-case-study-data-preparation.html](https://htmlpreview.github.io/?https://github.com/hyoaru/google-data-analytics-capstone-case-study/blob/master/capstone-case-study-data-preparation.html)## Data source and organization
The data used for the case study on Cyclistic is sourced from https://divvy-tripdata.s3.amazonaws.com/index.html. Made available by Motivate International Inc. under this [license](https://ride.divvybikes.com/data-license-agreement) The dataset contains historical data on bike rides. In which, contains the columns:
* **ride_id:** A unique identifier for each bike ride.
* **rideable_type:** The type of bike for which what the user used for the bike ride.
* **started_at:** The timestamp indicating the start time of the ride.
* **ended_at:** The timestamp indicating the end time of the ride.
* **start_station_name:** The name or location description of the docking station where the ride started.
* **start_station_id:** The unique identifier of the docking station where the ride started.
* **end_station_name:** The name or location description of the docking station where the ride ended.
* **end_station_id:** The unique identifier of the docking station where the ride ended.
* **start_lat:** The latitude coordinate of the docking station where the ride started.
* **start_lng:** The longitude coordinate of the docking station where the ride started.
* **end_lat:** The latitude coordinate of the docking station where the ride ended.
* **end_lng:** The longitude coordinate of the docking station where the ride ended.
* **member_casual:** The type of user, indicating whether the customer is a casual pass user or an annual member.## Technologies used
* R and python
* r-tidyverse
* r-scales
* r-viridis
* python-pandas