Give Me More Business for My Cart




Pay Notebook Creator: Stelios Phanartzis0
Set Container: Numerical CPU with TINY Memory for 10 Minutes 0
Total0
In [5]:
#Food Vendor Table
fv_url = 'https://data.cityofnewyork.us/resource/d9fw-zp4j.json'
#Restaurant Grade Table
rg_url = 'https://data.cityofnewyork.us/resource/xx67-kt59.json'
In [6]:
import pandas as pd
In [7]:
vt = pd.read_json(fv_url)
rt = pd.read_json(rg_url)
In [10]:
vt['postcode'].unique()
Out[10]:
array([10036., 10019., 10023., 10018., 10020., 10012.,    nan])
In [ ]: