Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Read the data from yellow_tripdata_small_2016-01.csv Remove any data that is outside the NYC bounding box NYC bounding box: westlimit=-74.2635; southlimit=40.4856; eastlimit=-73.7526; northlimit=40.9596 See http://boundingbox.klokantech.com for
- Read the data from "yellow_tripdata_small_2016-01.csv"
- Remove any data that is outside the NYC bounding box
- NYC bounding box: westlimit=-74.2635; southlimit=40.4856; eastlimit=-73.7526; northlimit=40.9596
- See http://boundingbox.klokantech.com for info on bounding boxes
- Calculate taxi trip duration and save in a new column "duration"
- Convert duration into a float
- Do some basic analysis (see below)
- Add a day of week column
- Add an hour of day column
- Do some analysis (see below)
- Divide the data into zones
- write a function createZoneTable(zone_factor) that divides the bounding box into zones
- the idea is to create zone_factor * zone_factor zones
- e.g., if zone_factor is 20, you'll create 20*20 = 400 zones
- Divide the longitude (-73.7526 to -74.2635) into zone_factor (e.g., 20) sections
- Divide the latitude (40.4856 to 40.9596) into zone_factor (e.g., 20) sections
- Return a table (a list of lists) containing a zone id, and the coordinates of the zone
- (see e.g., below)
- Write a function get_zone(lon,lat) that figures out the zone given a latitude and longitude
- Apply this function to the dataframe, first with pickup lats and longs; then with dropoff lats and longs
- This will give two new "pickup_zone" and "dropoff_zone" columns
- Do some analysis (see below)
- Using folium, draw a heatmap of the number of trips originating in each zone
- Create a geojson object for all the zones
- Create a df that contains zone numbers and the number of trips originating in each zone
- Use folium to create a heatmap
- OPTIONAL: You'll notice that the bounding box is much larger than New York City. Try to remove every zone that has 0 originating trips from your map. (Hint: You can remove them from the geojson object)
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started