Lucrul cu JSON-uri imbricate

Ingestie eficientă a datelor cu pandas

Amany Mahfouz

Instructor

JSON-uri imbricate

  • JSON-urile conțin obiecte cu perechi atribut-valoare
  • Un JSON este imbricat când valoarea este ea însăși un obiect
Ingestie eficientă a datelor cu pandas

Exemplu de răspuns JSON din documentația Yelp Business API

Ingestie eficientă a datelor cu pandas

Exemplu de date Yelp cu date de coordonate și locație imbricate evidențiate

Ingestie eficientă a datelor cu pandas

Exemplu de date Yelp cu date de categorie imbricate evidențiate

Ingestie eficientă a datelor cu pandas

Exemplu de date Yelp cu înregistrări imbricate sub businesses evidențiate

Ingestie eficientă a datelor cu pandas
# Print columns containing nested data
print(bookstores[["categories", "coordinates", "location"]].head(3))
                                          categories  \
0   [{'alias': 'bookstores', 'title': 'Bookstores'}]   
1  [{'alias': 'bookstores', 'title': 'Bookstores'...   
2   [{'alias': 'bookstores', 'title': 'Bookstores'}]     

                                         coordinates  \
0  {'latitude': 37.7975997924805, 'longitude': -1...   
1  {'latitude': 37.7885846793652, 'longitude': -1...   
2  {'latitude': 37.7589836120605, 'longitude': -1...    

                                            location  
0  {'address1': '261 Columbus Ave', 'address2': '...  
1  {'address1': '50 2nd St', 'address2': '', 'add...  
2  {'address1': '866 Valencia St', 'address2': ''...
Ingestie eficientă a datelor cu pandas

pandas.io.json

  • Submodulul pandas.io.json conține instrumente pentru citirea și scrierea JSON
    • Necesită propria instrucțiune import
  • json_normalize()
    • Acceptă un dicționar/listă de dicționare (ca pd.DataFrame())
    • Returnează un dataframe aplatizat
    • Modelul implicit al numelor de coloane: atribut.atributimbricat
    • Alegeți un alt separator cu argumentul sep
Ingestie eficientă a datelor cu pandas

Încărcarea datelor JSON imbricate

import pandas as pd
import requests

from pandas.io.json import json_normalize
# Set up headers, parameters, and API endpoint api_url = "https://api.yelp.com/v3/businesses/search" headers = {"Authorization": "Bearer {}".format(api_key)} params = {"term": "bookstore", "location": "San Francisco"}
# Make the API call and extract the JSON data response = requests.get(api_url, headers=headers, params=params) data = response.json()
Ingestie eficientă a datelor cu pandas
# Flatten data and load to dataframe, with _ separators
bookstores = json_normalize(data["businesses"], sep="_")
print(list(bookstores))
['alias', 
 'categories',
 'coordinates_latitude',
 'coordinates_longitude',
 ...
 'location_address1',
 'location_address2',
 'location_address3',
 'location_city',
 'location_country',
 'location_display_address',
 'location_state',
 'location_zip_code',
 ...
 'url']
Ingestie eficientă a datelor cu pandas

Date profund imbricate

print(bookstores.categories.head())
0     [{'alias': 'bookstores', 'title': 'Bookstores'}]
1    [{'alias': 'bookstores', 'title': 'Bookstores'...
2     [{'alias': 'bookstores', 'title': 'Bookstores'}]
3     [{'alias': 'bookstores', 'title': 'Bookstores'}]
4    [{'alias': 'bookstores', 'title': 'Bookstores'...
Name: categories, dtype: object
Ingestie eficientă a datelor cu pandas

Date profund imbricate

  • json_normalize()
    • record_path: șir/listă de atribute șir către datele imbricate
    • meta: listă de alte atribute de încărcat în dataframe
    • meta_prefix: prefix aplicat numelor coloanelor meta
Ingestie eficientă a datelor cu pandas

Date profund imbricate

# Flatten categories data, bring in business details
df = json_normalize(data["businesses"],
                    sep="_",

record_path="categories",
meta=["name", "alias", "rating", ["coordinates", "latitude"], ["coordinates", "longitude"]],
meta_prefix="biz_")
Ingestie eficientă a datelor cu pandas
print(df.head(4))
        alias               title                biz_name  \
0  bookstores          Bookstores   City Lights Bookstore   
1  bookstores          Bookstores  Alexander Book Company   
2  stationery  Cards & Stationery  Alexander Book Company   
3  bookstores          Bookstores       Borderlands Books   

                              biz_alias  biz_rating  biz_coordinates_latitude  \
0   city-lights-bookstore-san-francisco         4.5                 37.797600   
1  alexander-book-company-san-francisco         4.5                 37.788585   
2  alexander-book-company-san-francisco         4.5                 37.788585   
3       borderlands-books-san-francisco         5.0                 37.758984   

   biz_coordinates_longitude  
0                -122.406578  
1                -122.400631  
2                -122.400631  
3                -122.421638
Ingestie eficientă a datelor cu pandas

Să exersăm!

Ingestie eficientă a datelor cu pandas

Preparing Video For Download...