The proposed scripts allow you to explore some features about taxis' behaviour in NYC.
The data in usage are available on Taxi in NYC. They're .csv files well organized with so many interesting features. You can check the data dictionary present on the same page of downloads.
To get a better visualization we need to know which borough a certain zone relates to . So another useful dataset is taxi_zone_lookup.csv, available on the same page.
-
Hw2_libf.py
: This script contains all the useful functions to get the proposed analysis deeply commented to have a clear view of the logic behind. -
zones.htm
: This html files contains a NY map that higlights the zone where data were recorded. -
picks.html
: This html file contains a Ny Choroplet map that takes in account the number of taxi picks. -
drops.html
: This html file contains a Ny Choroplet map that takes in account the number of taxi drops.
The goal of the Notebook
is to provide a storytelling friendly format that shows how to use the implemented code and to carry out the analysis.
I tried to organize it in a way the reader can follow our logic and conlcusions.