“Erstellen Sie einen Datenrahmen aus dem DICT” Code-Antworten

Pandas DataFrame aus dem Diktat

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

Pandas DataFrame aus dem Diktat

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

Datenrahmen vom Diktat

pd.DataFrame.from_dict(data)
Obedient Oryx

Erstellen Sie einen Datenrahmen aus dem DICT

create a dataframe from dict (function)

import pandas as pd
def create_df():
    data = {'col_1': [3, 2, 1, 0], 'col_2': ['a', 'b', 'c', 'd']}
    return pd.DataFrame.from_dict(data)
create_df()
Thoughtless Tapir

Ähnliche Antworten wie “Erstellen Sie einen Datenrahmen aus dem DICT”

Fragen ähnlich wie “Erstellen Sie einen Datenrahmen aus dem DICT”

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen