'Yelp_Cuisine_*.csv(.pkl)' from yelp-challenge/data_processing, made by ZZ


In [1]:
import pandas as pd
df = pd.read_pickle('../../yelp-challenge/data_processeing/Yelp_Cuisine_Japanese.pkl')

In [6]:
ALL_JPN_BID = df[df.cuisine_Japanese == 2][['business_id']]
ALL_JPN_BID.shape


Out[6]:
(1625, 1)

In [7]:
ALL_JPN_BID.to_csv("ALL_Japanese_Business_ID.csv", index_label=False)