MATLAB: How to get Taxi data for New York city

big dataMATLAB

In the video here , it talks about using the New York city taxi data. It says for me to go to the website and download the data. Is there anyway to tell MATLAB to download this data directly?

Best Answer

What about using urlwrite?
urlwrite('https://s3.amazonaws.com/nyc-tlc/trip+data/yellow_tripdata_2016-01.csv','yellow_tripdata_2016-01.csv');
This should download the code for you.
Related Question