“Pandas zur Auflistung von Diktieren” Code-Antworten

Datenrahmen zur Auflistung von Diktieren

df = pd.DataFrame({'Name': ['John', 'Sara','Peter','Cecilia'],
                   'Age': [38, 47,63,28],
                  'City':['Boston', 'Charlotte','London','Memphis']})

datadict = df.to_dict('records')
Exuberant Eland

Python -Liste von Dikten zu DataFrame

# Supposing d is your list of dicts, simply
df = pd.DataFrame(d)
# Note: this does not work with nested data
Arno Deceuninck

Konvertieren des Datenrahmens aus der Liste mithilfe einer Liste im Wörterbuch

# import pandas as pd 

import pandas as pd 
# list of name, degree, score 
n = ["apple", "grape", "orange", "mango"] 
col = ["red", "green", "orange", "yellow"] 
val = [44, 33, 22, 11] 
# dictionary of lists 
dict = {'fruit': n, 'color': col, 'value': val}  
df = pd.DataFrame(dict) 
print(df)
Outrageous Ostrich

Liste des DICT zu DF

df = pd.DataFrame(d)  #here d is list of dict 
Sachin

Pandas zur Auflistung von Diktieren

In [20]: timeit df.T.to_dict().values()
1000 loops, best of 3: 395 µs per loop

In [21]: timeit df.to_dict('records')
10000 loops, best of 3: 53 µs per loop
Busy Boar

Pandas DF zur Auflistung von Wörterbüchern

In [2]: df.to_dict('records')
Out[2]:
[{'customer': 1L, 'item1': 'apple', 'item2': 'milk', 'item3': 'tomato'},
 {'customer': 2L, 'item1': 'water', 'item2': 'orange', 'item3': 'potato'},
 {'customer': 3L, 'item1': 'juice', 'item2': 'mango', 'item3': 'chips'}]
Doubtful Dotterel

Ähnliche Antworten wie “Pandas zur Auflistung von Diktieren”

Fragen ähnlich wie “Pandas zur Auflistung von Diktieren”

Weitere verwandte Antworten zu “Pandas zur Auflistung von Diktieren” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen