Baselight

Cyclisitic Trip Data 2019 (Google)

Take a look at my first case study! I had a lot of fun making this.

@kaggle.shainepepper_divvy_2019_trip_data_clean

Divvy Clean 2019 Final
@kaggle.shainepepper_divvy_2019_trip_data_clean.divvy_clean_2019_final

  • 28.52 MB
  • 1005523 rows
  • 12 columns
trip_id

Trip Id

start_time

Start Time

end_time

End Time

bike_id

Bike Id

from_station_id

From Station Id

from_station_name

From Station Name

to_station_id

To Station Id

to_station_name

To Station Name

user_type

User Type

gender

Gender

birth_year

Birth Year

trip_duration

Trip Duration

21742446Tue Jan 01 2019 00:13:45 GMT+0000 (Coordinated Universal Time)Tue Jan 01 2019 00:43:28 GMT+0000 (Coordinated Universal Time)252123California Ave & Milwaukee Ave176Clark St & Elm StSubscriberMale19931783
21742449Tue Jan 01 2019 00:16:06 GMT+0000 (Coordinated Universal Time)Tue Jan 01 2019 00:19:03 GMT+0000 (Coordinated Universal Time)270898LaSalle St & Washington St49Dearborn St & Monroe StSubscriberMale1984177
21742450Tue Jan 01 2019 00:18:41 GMT+0000 (Coordinated Universal Time)Tue Jan 01 2019 00:20:21 GMT+0000 (Coordinated Universal Time)2796211St. Clair St & Erie St142McClurg Ct & Erie StSubscriberMale1990
21742451Tue Jan 01 2019 00:18:43 GMT+0000 (Coordinated Universal Time)Tue Jan 01 2019 00:47:30 GMT+0000 (Coordinated Universal Time)6205150Fort Dearborn Dr & 31st St148State St & 33rd StSubscriberMale19951727
21742460Tue Jan 01 2019 00:24:27 GMT+0000 (Coordinated Universal Time)Tue Jan 01 2019 00:47:03 GMT+0000 (Coordinated Universal Time)5777268Lake Shore Dr & North Blvd319Greenview Ave & Diversey PkwyCustomerFemale19901356
21742461Tue Jan 01 2019 00:25:28 GMT+0000 (Coordinated Universal Time)Tue Jan 01 2019 00:27:10 GMT+0000 (Coordinated Universal Time)394035Streeter Dr & Grand Ave35Streeter Dr & Grand AveSubscriberMale19852
21742466Tue Jan 01 2019 00:29:47 GMT+0000 (Coordinated Universal Time)Tue Jan 01 2019 00:49:15 GMT+0000 (Coordinated Universal Time)502685Michigan Ave & Oak St329Lake Shore Dr & Diversey PkwySubscriberMale19591168
21742468Tue Jan 01 2019 00:33:09 GMT+0000 (Coordinated Universal Time)Tue Jan 01 2019 00:50:25 GMT+0000 (Coordinated Universal Time)263013Wilton Ave & Diversey Pkwy61Wood St & Milwaukee AveSubscriberMale1991136
21742475Tue Jan 01 2019 00:45:37 GMT+0000 (Coordinated Universal Time)Tue Jan 01 2019 01:17:51 GMT+0000 (Coordinated Universal Time)5583464Damen Ave & Foster Ave30Ashland Ave & Augusta BlvdSubscriberMale19911934
21742480Tue Jan 01 2019 00:51:55 GMT+0000 (Coordinated Universal Time)Tue Jan 01 2019 00:54:49 GMT+0000 (Coordinated Universal Time)5629206Halsted St & Archer Ave135Halsted St & 21st StSubscriberMale1989174

CREATE TABLE divvy_clean_2019_final (
  "trip_id" DOUBLE,
  "start_time" TIMESTAMP,
  "end_time" TIMESTAMP,
  "bike_id" DOUBLE,
  "from_station_id" DOUBLE,
  "from_station_name" VARCHAR,
  "to_station_id" DOUBLE,
  "to_station_name" VARCHAR,
  "user_type" VARCHAR,
  "gender" VARCHAR,
  "birth_year" DOUBLE,
  "trip_duration" DOUBLE
);

Share link

Anyone who has the link will be able to view this.