This commit is contained in:
louiscklaw
2025-01-31 22:21:55 +08:00
parent 3688f9ee24
commit ae3970ff3c
90 changed files with 734370 additions and 0 deletions

View File

@@ -0,0 +1,60 @@
Part 1a: top-5 most popular drop locations,,
DOLocationID,number_of_dropoffs,
,,
,,
,,
,,
,,
Part 1b: top-5 most popular pickup locations,,
PULocationID,number_of_pickups,
,,
,,
,,
,,
,,
Part 2: top-3 locations with the maximum overall activity,,
locationID,total_activity,
,,
,,
,,
Part 3: all the boroughs in the order of having the highest to lowest number of activities,,
Borough,total_number_activities,
,,
,,
,,
,,
,,
,,
,,
Part 4: top 2 days of week with the largest number of (daily) average pickups - along with the values of average number of pickups on each of the two days,,
day_of_week,avg_count,
,,
,,
Part 5: For each particular hour of a day (0 to 23 - 0 being midnight) - in their order from 0 to 23. Find the zone in Brooklyn borough with the LARGEST number of pickups,,
hour_of_day,Zone,max_count
0,,
1,,
2,,
3,,
4,,
5,,
6,,
7,,
8,,
9,,
10,,
11,,
12,,
13,,
14,,
15,,
16,,
17,,
18,,
19,,
20,,
21,,
22,,
23,,
Part 6: Which 3 different days of the January - in Manhattan - saw the largest percentage increment in pickups compared to previous day,,
day, percent_change,
1 Part 1a: top-5 most popular drop locations
2 DOLocationID number_of_dropoffs
3
4
5
6
7
8 Part 1b: top-5 most popular pickup locations
9 PULocationID number_of_pickups
10
11
12
13
14
15 Part 2: top-3 locations with the maximum overall activity
16 locationID total_activity
17
18
19
20 Part 3: all the boroughs in the order of having the highest to lowest number of activities
21 Borough total_number_activities
22
23
24
25
26
27
28
29 Part 4: top 2 days of week with the largest number of (daily) average pickups - along with the values of average number of pickups on each of the two days
30 day_of_week avg_count
31
32
33 Part 5: For each particular hour of a day (0 to 23 - 0 being midnight) - in their order from 0 to 23. Find the zone in Brooklyn borough with the LARGEST number of pickups
34 hour_of_day Zone max_count
35 0
36 1
37 2
38 3
39 4
40 5
41 6
42 7
43 8
44 9
45 10
46 11
47 12
48 13
49 14
50 15
51 16
52 17
53 18
54 19
55 20
56 21
57 22
58 23
59 Part 6: Which 3 different days of the January - in Manhattan - saw the largest percentage increment in pickups compared to previous day
60 day percent_change