我花了数小时试图取消嵌套来自json文件的数据框中的列,但仍然无法使其工作。
我已经使用GraphQl查询了一个网站,并将响应加载到变量json中:
json = resp.json()
接下来,我使用json_normalize将数据加载到数据帧中:
df = pd.DataFrame.from_dict(json_normalize(resp.json()), orient='columns')
我重命名了列。
然后,我尝试通过我在stackoverflow上以及互联网上其他地方看到的几种方法来取消对列的嵌套:
我尝试了不同版本的嵌套列json_normalize以及元数据,但没有一种方法可以调用特定值:
json_normalize(json, ['floors', ['units'],['features']])
这:
json_normalize(data=json, record_path=['floors', 'units','features'])
但是,在大多数情况下,我遇到TypeError:字符串索引必须是整数。
我尝试将值分别分配给列,但是在其中某些是NUll的情况下失败了
df['pets allowed'] = json['data']['offerAggregate']['property_aggregate']['property']['rules']['code' == 'pets-allowed']['exists']
我还尝试通过关键字(如“代码”)拆分列,但这仅返回Null
理想情况下,我想使选项#1起作用,但是我确实尝试了很多版本,但仍然没有结果,因为我不确定如何适当地定义嵌套列的路径。
这是完整的架构:
{'data': {'offerAggregate': {'accommodation_offer': {'contract': {'type': 'fortnight',
'exclusive': False,
'is_instant_booking': False,
'commission': 0.08,
'deposit': {'pay_to': 'accommodation-provider',
'type': 'equal-to-first-payment',
'value': {'amount': 0, 'currency_code': ''}},
'admin_fee': {'exact_value': True,
'value': {'amount': 0, 'currency_code': 'EUR'}},
'fixed_unitary': {'extra_per_guest': {'amount': 0, 'currency_code': ''}}},
'reference_price': {'amount': '25000', 'currency_code': 'EUR'},
'requisites': {'conditions': {'cancellation_policy': 'moderate',
'minimum_nights': 27,
'max_guests': 2}},
'costs': {'bills': {'water': {'included': True},
'electricity': {'included': True},
'gas': {'included': True},
'internet': {'included': True}},
'services': {'cleaning': {'periodicity': 'weekly'}}}},
'accommodation_provider': {'stats': {'bookings': {'accepted': {'total': 2},
'requested': {'total': 10},
'rejected': {'total': 1},
'confirmed': {'total': 0}}},
'created': {'at': '2018-11-02 16:51:22'}},
'property_aggregate': {'property': {'id': '114087',
'landlord_resident': {'gender': '', 'age_range': '', 'occupation': ''},
'floors': [{'units': [{'features': [{'Code': 'fridge', 'Exists': True},
{'Code': 'freezer', 'Exists': True},
{'Code': 'oven', 'Exists': True},
{'Code': 'stove', 'Exists': True},
{'Code': 'washing-machine', 'Exists': True},
{'Code': 'window', 'Exists': True},
{'Code': 'balcony', 'Exists': False},
{'Code': 'table', 'Exists': True},
{'Code': 'chairs', 'Exists': True}]},
{'features': [{'Code': 'bathtub', 'Exists': False},
{'Code': 'shower', 'Exists': True},
{'Code': 'sink', 'Exists': True},
{'Code': 'toilet', 'Exists': True},
{'Code': 'window', 'Exists': True}]},
{'features': [{'Code': 'wardrobe', 'Exists': True},
{'Code': 'chest-of-drawers', 'Exists': False},
{'Code': 'desk', 'Exists': True},
{'Code': 'chairs', 'Exists': True},
{'Code': 'sofa', 'Exists': False},
{'Code': 'sofa-bed', 'Exists': False},
{'Code': 'window', 'Exists': True},
{'Code': 'balcony', 'Exists': False},
{'Code': 'tv', 'Exists': False},
{'Code': 'lock', 'Exists': True}]},
{'features': [{'Code': 'wardrobe', 'Exists': True},
{'Code': 'chest-of-drawers', 'Exists': False},
{'Code': 'desk', 'Exists': True},
{'Code': 'chairs', 'Exists': True},
{'Code': 'sofa', 'Exists': False},
{'Code': 'sofa-bed', 'Exists': False},
{'Code': 'window', 'Exists': True},
{'Code': 'balcony', 'Exists': True},
{'Code': 'tv', 'Exists': False},
{'Code': 'lock', 'Exists': True}]},
{'features': [{'Code': 'wardrobe', 'Exists': True},
{'Code': 'chest-of-drawers', 'Exists': False},
{'Code': 'desk', 'Exists': False},
{'Code': 'chairs', 'Exists': False},
{'Code': 'sofa', 'Exists': False},
{'Code': 'sofa-bed', 'Exists': False},
{'Code': 'window', 'Exists': True},
{'Code': 'balcony', 'Exists': False},
{'Code': 'tv', 'Exists': False},
{'Code': 'lock', 'Exists': True}]},
{'features': [{'Code': 'wardrobe', 'Exists': True},
{'Code': 'chest-of-drawers', 'Exists': False},
{'Code': 'desk', 'Exists': False},
{'Code': 'chairs', 'Exists': False},
{'Code': 'sofa', 'Exists': False},
{'Code': 'sofa-bed', 'Exists': False},
{'Code': 'window', 'Exists': True},
{'Code': 'balcony', 'Exists': True},
{'Code': 'tv', 'Exists': False},
{'Code': 'lock', 'Exists': True}]}]}],
'rules': [{'code': 'overnight-guests-allowed', 'exists': False},
{'code': 'pets-allowed', 'exists': False},
{'code': 'smoking-allowed', 'exists': False}],
'typology': {'area': 0,
'accommodation_type_code': 'private',
'type_code': 'apartment',
'number_of_bedrooms': 4,
'number_of_bathrooms': 1},
'location': {'neighborhood_id': 229,
'geo': {'latitude': 38.7514768, 'longitude': -9.2031683},
'address': {'postal_code': '1500-109'}},
'verification': {'verified': True}}}}}}
提前感谢您的宝贵时间!非常感谢您的帮助!
答案 0 :(得分:1)
json_normalize
停在floors
和rules
的原因是因为它们包含lists
而不是dictionaries
,json_normalize
正在等待。
要规范化此json,您将需要将这些列表转换为类似字典的结构。例如,对于规则而不是这种结构:
[{'code': 'overnight-guests-allowed', 'exists': False},
{'code': 'pets-allowed', 'exists': False},
{'code': 'smoking-allowed', 'exists': False}]
您将需要以下结构:
{'overnight-guests-allowed': False,
'pets-allowed': False},
'smoking-allowed': False}