“Umwandeln Sie ein Wörterbuch in DataFrame Python” Code-Antworten

Umwandeln Sie ein Wörterbuch in DataFrame Python

import pandas as pd
data = {'col_1': [3, 2, 1, 0], 'col_2': ['a', 'b', 'c', 'd']}
pd.DataFrame.from_dict(data, orient='index').T
JJSSEECC

Pandas DataFrame aus dem Diktat

>>> data = {'col_1': [3, 2, 1, 0], 'col_2': ['a', 'b', 'c', 'd']}
>>> pd.DataFrame.from_dict(data)
   col_1 col_2
0      3     a
1      2     b
2      1     c
3      0     d
Worrisome Whale

Konvertieren Sie das DICT in DataFrame

#Lazy way to convert json dict to df

pd.DataFrame.from_dict(data, orient='index').T
Magnificent Moth

Ähnliche Antworten wie “Umwandeln Sie ein Wörterbuch in DataFrame Python”

Fragen ähnlich wie “Umwandeln Sie ein Wörterbuch in DataFrame Python”

Weitere verwandte Antworten zu “Umwandeln Sie ein Wörterbuch in DataFrame Python” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen