Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I'm trying to use json_normalize in a column containing my activity imformation, download from Google takeout.

This is the dataframe:

enter image description here

this is the code i found to do what i need:

import numpy as np
import pandas as pd
from ast import literal_eval



# fillna
data['activity'] = data['activity'].fillna('[]')

# literal_eval
data['activity'] = data['activity'].apply(literal_eval)

# explode
data = data.explode('activity').reset_index(drop=True)

# fillna again
data['activity'] = data['activity'].fillna({i: {} for i in data.index})

# use json_normalize
data = data.join(data.json_normalize(data.activity), meta=['type', 'confidence']).drop(columns=['activity'])

This error comes out:

enter image description here

I would be very grateful if someone can help me!


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
4.2k views
Welcome To Ask or Share your Answers For Others

1 Answer

等待大神解答

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...