“pandy do listy dyktów” Kod odpowiedzi

DataFrame to List of Dicts

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

Lista Python Dict to DataFrame

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

Konwersja ramki danych z listy za pomocą listy w słowniku

# 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

Lista Dict to DF

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

pandy do listy dyktów

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

Pandy DF do listy słowników

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

Odpowiedzi podobne do “pandy do listy dyktów”

Pytania podobne do “pandy do listy dyktów”

Więcej pokrewnych odpowiedzi na “pandy do listy dyktów” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu