Cyclistic Bike Share
Google Data Analytics Capstone Project
@kaggle.yoaquingarcaluna_cyclistic_bike_share
Google Data Analytics Capstone Project
@kaggle.yoaquingarcaluna_cyclistic_bike_share
This dataset is used for the capstone project of the Google Data Analytics Professional Certificate.
Cyclistic’s historical trip data to analyze and identify trends. The data can be accessed from the provider via this link. (Note: The datasets have a different name because Cyclistic is a fictional company. For the purposes of this case study, the datasets are appropriate and will enable you to answer the business questions. The data has been made available by Motivate International Inc. under this license.)
CREATE TABLE cyclistic_tripdata_2020 (
"ride_id" VARCHAR,
"rideable_type" VARCHAR,
"started_at" VARCHAR,
"ended_at" VARCHAR,
"start_station_name" VARCHAR,
"start_station_id" VARCHAR,
"end_station_name" VARCHAR,
"end_station_id" VARCHAR,
"start_lat" DOUBLE,
"start_lng" DOUBLE,
"end_lat" DOUBLE,
"end_lng" DOUBLE,
"member_casual" VARCHAR
);CREATE TABLE cyclistic_tripdata_2021 (
"ride_id" VARCHAR,
"rideable_type" VARCHAR,
"started_at" VARCHAR,
"ended_at" VARCHAR,
"start_station_name" VARCHAR,
"start_station_id" VARCHAR,
"end_station_name" VARCHAR,
"end_station_id" VARCHAR,
"start_lat" DOUBLE,
"start_lng" DOUBLE,
"end_lat" DOUBLE,
"end_lng" DOUBLE,
"member_casual" VARCHAR
);CREATE TABLE cyclistic_tripdata_2022 (
"ride_id" VARCHAR,
"rideable_type" VARCHAR,
"started_at" VARCHAR,
"ended_at" VARCHAR,
"start_station_name" VARCHAR,
"start_station_id" VARCHAR,
"end_station_name" VARCHAR,
"end_station_id" VARCHAR,
"start_lat" DOUBLE,
"start_lng" DOUBLE,
"end_lat" DOUBLE,
"end_lng" DOUBLE,
"member_casual" VARCHAR
);Anyone who has the link will be able to view this.