У меня есть файл json с вложенными списками, содержащий многоуровневый словарь.Я пытаюсь создать питон DataFrame из этих данных.
Loading data:
data = []
with open('TREC_blog_2012.json') as f:
for line in f:
data.append(json.loads(line))
Вывод данных:
IN LIST FORMAT: data[0]
{'id': '1d3bc37004e71da2816dbfda8df90746',
'article_url': 'https://www.washingtonpost.com/express/wp/2012/01/03/month-of-muscle/',
'title': 'Month of Muscle',
'author': 'Vicky Hallett',
'published_date': 1325608933000,
'contents': [{'content': 'Express', 'mime': 'text/plain', 'type': 'kicker'},
{'content': 'Month of Muscle', 'mime': 'text/plain', 'type': 'title'},
{'content': 'By Vicky Hallett', 'mime': 'text/plain', 'type': 'byline'},
{'content': 1325608933000, 'mime': 'text/plain', 'type': 'date'},
{'content': 'SparkPeople trainer Nicole Nichols asks for only 28 days to get you into shape',
'mime': 'text/plain',
'type': 'deck'},
{'fullcaption': 'Nicole Nichols, front, chose backup exercisers with strong but realistic physiques to make the program less intimidating.',
'imageURL': 'http://www.expressnightout.com/wp-content/uploads/2012/01/SparkPeople28DayBootcamp.jpg',
'mime': 'image/jpeg',
'imageHeight': 201,
'imageWidth': 300,
'type': 'image',
'blurb': 'Nicole Nichols, front, chose backup exercisers with strong but realistic physiques to make the program less intimidating.'},
{'content': 'If you’ve seen a Nicole Nichols workout before, chances are it was on YouTube. The fitness expert, known as just Coach Nicole to the millions of members of <a href="http://www.sparkpeople.com" target="_blank">SparkPeople.com</a>, has filmed dozens of routines for the free health website. The popular videos showcasing her girl-next-door style, gentle encouragement and clear cueing have built such a devoted following that the American Council on Exercise and Life Fitness just named her “America’s top personal trainer to watch.”',
'subtype': 'paragraph',
'type': 'sanitized_html',
'mime': 'text/html'},
{'content': '<strong>3. Prioritize.</strong> When people say they can’t fit exercise in their schedule, Nichols always asks, “How much TV do you watch?” Use your shows as a reward for your workout instead of the replacement, she suggests.',
'subtype': 'paragraph',
'type': 'sanitized_html',
'mime': 'text/html'},
{'role': '',
'type': 'author_info',
'name': 'Vicky Hallett',
'bio': 'Vicky Hallett is a freelancer and former MisFits columnist.'}],
'type': 'blog',
'source': 'The Washington Post'}
Я хочу преобразовать эти данные в тип DataFrame с ключами в качестве столбцов и соответствующими значениями в качестве значений строк.
Но проблема, с которой я сталкиваюсь, состоит в том, что ключ «содержимое» содержит список многоуровневых значений словаря, которые я не понимаю, как преобразовать в правильное значение DataFrame.
The method I tried:
df = pd.DataFrame(data)
test = pd.DataFrame(df['contents'][0])
test.head()
дает мне вывод df ['contents'] как
![output received for test](https://i.stack.imgur.com/MgrzH.jpg)
Данные не выровнены должным образом ине правильно назначен, если я пытаюсь описанным выше способом.Любое предложение о том, как преобразовать этот список словарей ключа содержимого в правильный фрейм данных?
TIA:)