Answers for "convert dataframe within a dictionary to dictionary"

2

pandas dataframe from dict

>>> 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
Posted by: Guest on June-12-2020
0

pandas to dictionary

df.to_dict('records')
Posted by: Guest on August-06-2020

Code answers related to "convert dataframe within a dictionary to dictionary"

Python Answers by Framework

Browse Popular Code Answers by Language