pandas dataframe to dic code example

Example 1: pandas dataframe from dict

>>> 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

Example 2: dataframe to dictionary

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

Example 3: pandas to dictionary

df.to_dict('records')

Example 4: dataframe to dictionary using index as key

#Use the Dataframe index as the key of the dictionary
df.to_dict('index')