Answers for "print dataframe dict code"

22

pandas dataframe from dict

data = {'col_1': [3, 2, 1, 0], 'col_2': ['a', 'b', 'c', 'd']}
pd.DataFrame.from_dict(data)
Posted by: Guest on March-30-2020
0

dataframe to dictionary using index as key

#Use the Dataframe index as the key of the dictionary
df.to_dict('index')
Posted by: Guest on November-04-2020

Python Answers by Framework

Browse Popular Code Answers by Language