Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
4.1k views
in Technique[技术] by (71.8m points)

python - json_normalize "activity" column in dataframe made whit "historical locations" from google

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!


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神解答

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...