“DataFrame to Dictionary” 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

Konvertieren Sie Pandas DataFrame/ Tabelle in Python Dictionary

df.to_dict(orient='index')
Kwams

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

DataFrame to Dictionary

>>> df.to_dict('records')
[{'col1': 1, 'col2': 0.5}, {'col1': 2, 'col2': 0.75}]
yogesh174

Datenrahmen vom Diktat

pd.DataFrame.from_dict(data)
Obedient Oryx

Ähnliche Antworten wie “DataFrame to Dictionary”

Fragen ähnlich wie “DataFrame to Dictionary”

Weitere verwandte Antworten zu “DataFrame to Dictionary” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen