我有一个 DataFrame 对象,有多个列:business_id
, categories
, type_of_business
...
我已经设法创建了一个较小的 DataFrame,仅使用原始 DataFrame 对象上的列索引business_id
并通过列索引。categories
categories
是某些字符串的列表。示例:['Restaurant, 'food', 'bakery']
- 对于每个business_id
.
类别之一是Restaurants
. Restaurants
我将如何仅检索单词在类别列表中的那些业务 ID 。
伪代码:
for row in smaller_DataFrame:
if 'Restaurants' in row['categories']:
add this business_id to some dictionary.
我对如何将if
条件合并到 DataFrame 对象中感兴趣。
提前致谢。