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


In [ ]:
import pandas as pd
df = pd.read_pickle('../yelp-challenge/data_processeing/Yelp_Cuisine_Chinese.pkl')
ALL_Chinese_BID = df[df.cuisine_Chinese == 2][['business_id']]
ALL_Chinese_BID.shape

In [ ]:
ALL_Chinese_BID.to_csv("ALL_Chinese_Business_ID.csv", index_label=False)