Answers for "pandas dataframe.to_dict"

1

convert dict to dataframe

#Lazy way to convert json dict to df

pd.DataFrame.from_dict(data, orient='index').T
Posted by: Guest on April-29-2020
0

pandas to dictionary

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

pandas dataframe.to_dict

#orientstr {‘dict’, ‘list’, ‘series’, ‘split’, ‘records’, ‘index’}
#Determines the type of the values of the dictionary.
#‘dict’ (default) : dict like {column -> {index -> value}}
#‘list’ : dict like {column -> [values]}
#‘series’ : dict like {column -> Series(values)}
#‘split’ : dict like {‘index’ -> [index], ‘columns’ -> [columns], ‘data’ -> [values]}
#‘records’ : list like [{column -> value}, … , {column -> value}]
#‘index’ : dict like {index -> {column -> value}}

# Example:
data = pandas.read_csv("data/data_name.csv")
to_dict = data.to_dict(orient="records")
Posted by: Guest on July-27-2021
0

convert pandas dataframe to dict with a column as key

df.set_index('columnName').T.to_dict()
Posted by: Guest on March-17-2021

Python Answers by Framework

Browse Popular Code Answers by Language