Answers for "pandas row as dict"

1

pandas row from dict

data = {'row_1': [3, 2, 1, 0], 'row_2': ['a', 'b', 'c', 'd']}
pd.DataFrame.from_dict(data, orient='index')
Posted by: Guest on January-19-2021
4

dataframe to dictionary

>>> df.to_dict('records')
[{'col1': 1, 'col2': 0.5}, {'col1': 2, 'col2': 0.75}]
Posted by: Guest on December-31-2020

Python Answers by Framework

Browse Popular Code Answers by Language